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 / aravind9882
yeh neelima is rt...
u will get the variables in the order u mention in the var
statement in proc print.
proc print data =abc;
var a g k m o s t w;
run;
| Is This Answer Correct ? | 6 Yes | 3 No |
Post New Answer View All Answers
What is PROC in SAS?
What is the work of tranwrd function?
Mention the validation tools used in SAS?
Compare sas with other data analytics tools.
How to specify variables to be processed by the freq procedure?
Mention some common errors that are usually committed in sas programming.
What is the difference between the proc sql and data step?
what is business intelligence? : Sas-bi
If you use a symput in a data step, when and where can you use the macro variable? : sas-macro
What is program data vector (pdv)?
what is null hypothesis? why do you consider that?
What are the default statistics for means procedure?
what is the difference between calculating the 'mean' using the mean function and proc means? : Sas programming
What is the difference between proportion and average?
What is maximum number of rows and cols can be handled in SAS?