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 / mohan reddy
U CAN USE THE KEEP OPTION.
EX
DATA EMP(KEEP=NAME AGE SAL ADD LOC);
SET EMPLOYEE;
RUN;
| Is This Answer Correct ? | 3 Yes | 4 No |
Post New Answer View All Answers
How substr function works in sas?
Explain the main difference between the sas procedures and functions? : Sas-administrator
Explain bmdp procedure?
what are some good sas programming practices for processing very large data sets? : Sas programming
For what purpose would you use the RETAIN statement?
explain the use of % includes a statement in sas? : Sas-administrator
Did you used proc test? when?
How would you identify a macro variable?
what is the difference between infile and input? : Sas-administrator
why a stop statement is needed for the point= option on a set statement?
name the scheduler for scheduling job and explain the scheduler? : Sas-di
Assuming {et} is randomly drawn from N(0,1) and e0 = 0, generate 200 observations of xt = et − 0.5e(t−1) and draw a line graph of xt.
describe how to adjust the performance of data integrator? : Sas-di
How does the internal authentication work in sas? : sas-grid-administration
Do we follow ADAM in analysis dataset development?How? Usually which version? Why is it necessary?