Answer Posted / dupe
Data set option :
Data new(keep=age race gender);
set old;
run;
Data set statemnet:
Data new;
set old;
drop age race and gender;
run;
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What is the order of application for output data set options, input data set options and SAS statements?
Give some ways by which you can define the variables to produce the summary report (using proc report)?
What are the applications primarily used by business analyst? : Sas-bi
How to test the debugging in sas?
: and & modifiers.
explain the difference between alternate key, business key, foreign key, generated key, primary key, retained key and surrogate key ? : Sas-di
How do you control the number of observations and/or variables read or written?
it will become easy if uuu provide website linkssss and list of consultanciessssss
what is the difference between nodup and nodupkey options? : Sas programming
what is the purpose of _error_? : Sas programming
What is the difference between one to one merge and match merge? Give an example.
What is the purpose of _character_ and _numeric_?
For what purpose would you use the RETAIN statement?
how does sas handle missing values in functions? : Sas programming
How to import multiple xls files into sas. Out of those files, how to get different values from a single variable and how to find number of rows per value type? We can do this using group by for one xls file with proc sql. Was wondering how I can achieve this for multiple files at the same time. Any ideas?