If you have a data set that contains 100 variables, but you
need only five of those, what is the code to force SAS to
use only those variable?
Answer Posted / vsrao
keep option
data ddd;
set sss(keep=a b c d e);
run;
| Is This Answer Correct ? | 9 Yes | 0 No |
Post New Answer View All Answers
What is the maximum length of the macro variable?
what versions of sas have you used (on which platforms)? : Sas programming
What is the purpose of _character_ and _numeric_?
Explain append procedure?
What do you understand by the term Normal Distribution?
What is the function of output statement in a SAS Program?
explain the use of % includes a statement in sas? : Sas-administrator
what is slowly changing dimension? : Sas-di
What do the put and input function do?
What are the differences between sum function and using “+” operator?
what are the benefits of data integration? : Sas-di
What are the new features included in the new version of SAS Programming Language?
hi here is a problem can anybody solve this? i want to report the data through third party file. by using data _null_ or proc report or macro automation process. but i want to insert the 'titles and footnotes' in between the data and also starting of 2nd and ending of 2nd and starting of 3rd and ending of the 3rd page. tell me how and write the code?
Give an example where SAS fails to convert character value to numeric value automatically?
What is the difference between using drop = data set option in data statement and set statement?