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 / gaurav verma
data xyz first obs=first
obs=last;
set zyx;
run;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are the new features included in the new version of SAS Programming Language?
What is a macro routine?
Mention what is the difference between nodupkey and nodup options?
What is the good sas programming practices for processing large data sets?
where to use sas business intelligence? : Sas-bi
What do the sas log messages “numeric values have been converted to character” mean? What are the implications?
how to read the variables in sas? : Sas-administrator
what is sas database server? : Sas-di
what is the limit of the number of the rows and columns available in the worksheet? : Sas-bi
how does sas handle missing values in sort order? : Sas programming
what are the categories that sas informats are used to the place the data? : Sas-administrator
What is the difference between INPUT and INFILE ?
What’s the difference between var b1 – b3 and var b1 — b3?
What do the mod and int function do? : Sas programming
Explain the difference between informat and format with an example.