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 default statistics for means procedure?
How many data types are there in SAS?
How do you connect the desktop application to metadata server? : sas-grid-administration
What is the difference between input and infile statement?
How are numeric and character missing values represented internally?
if a variable contain dates like "2015/01"---"2015/12" (yymm) ,How to add day to those dates,if them month is jan then 31 if the month is feb then 28 so on ...
What’s the difference between var b1 – b3 and var b1 — b3?
If you use a symput in a data step, when and where can you use the macro variable? : sas-macro
What is slibref?
What are the data types in sas?
What is the purpose of trailing @ and @@? How do you use them?
This entry was posted in General. Bookmark the permalink. Post a comment or leave
What is factor analysis?
How can you create a macro variable with in data step? : sas-macro
What is the use of PROC gplot?