hi guys ...i have one query...
data abc;
input s w k g o t a m;
cards;
1 2 3 4 5 6 7 8
2 3 4 5 6 7 8 9
;
run;
i want the output to be the sorted order(only
variables).observations should not be changed..
Answer Posted / guest
data abc;
input s w k g o t a m;
cards;
1 2 3 4 5 6 7 8
2 3 4 5 6 7 8 9
;
run;
proc sort data=abc;
run;
| Is This Answer Correct ? | 2 Yes | 24 No |
Post New Answer View All Answers
what is factor analysis? : Sas-administrator
how do you pull data from equifax?tell me the process?
How would you code a macro statement to produce information on the sas log? This statement can be coded anywhere? : sas-macro
Mention what is the difference between nodupkey and nodup options?
what is the primary data source for the wrs? : Sas-bi
explain what is data set in sas? : Sas-administrator
Name few SAS functions?
What is data _null_?
Give e an example of..
Enlist the syntax rules followed in sas statements.
Give some examples where proc report’s defaults are same as proc print’s defaults?
For what purpose would you use the RETAIN statement?
How is character variable converted into numeric variable and vice versa?
how will you locate the sas platform applications? : Sas-bi
what has been your most common programming mistake? : Sas programming