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 are the types of interactive display types? : Sas-bi
What is slibref?
What is the difference between where and if statement?
I have 3 years of work experience at a startup and recently got certified in Data Science with SAS. I need to know how to get into the analytics industry
where to use sas business intelligence? : Sas-bi
what does the run statement do? : Sas programming
What are the advantages of using sas?
Can you execute macro within another macro? If so, how would sas know where the current macro ended and the new one began? : sas-macro
What is the difference between nodupkey and nodup options?
how would you determine the number of missing or nonmissing values in computations? : Sas programming
What do the PUT and INPUT functions do?
What is the work of tranwrd function?
what is star schema? : Sas-di
For a user to have access to a standard workspace server, is internal authentication alone is sufficient? : sas-grid-administration
How do you specify the number of iterations and specific condition within a single do loop?