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
Describe the function and untility of the most difficult SAS macro that you have written.
what are the categories that sas informats are used to the place the data? : Sas-administrator
Do you need to know if there are any missing values?
In SAS explain which statement does not perform automatic conversions in comparisons?
What are symget and symput? : sas-macro
Tell e how how dealt with..
Name few SAS functions?
What are the data types does SAS contain?
what do the mod and int function do? What do the pad and dim functions do? : Sas programming
Explain append procedure?
What are pdv and it functions?
how will you location sas platform applications available from web browser? : Sas-bi
What Proc glm does?
name several ways to achieve efficiency in your program? : Sas programming
How would you include common or reuse to be processed along with your statements?