Code a PROC SORT on a data set containing State, District
and County as the primary variables, along with several
numeric variables.
Answer Posted / lakshmi
proc sort data=data1 out=data2;
by district state country;
run;
| Is This Answer Correct ? | 7 Yes | 0 No |
Post New Answer View All Answers
What is the difference between nodupkey and nodup options?
how does sas handle missing values in procs? : Sas programming
Where do you use proc means over proc freq?
Approximately what date is represented by the SAS date value of 730?
What are the scrubbing procedures in sas?
What is the difference between %put and symbolgen? : sas-macro
what is a method for assigning first.var and last.var to the by groupvariable on unsorted data? : Sas programming
what versions of sas have you used (on which platforms)? : Sas programming
Enlist the syntax rules followed in sas statements.
Did you used proc test? when?
how could you generate test data with no input data? : Sas programming
Explain what is SAS informats?
What are the functions which are used for character handling functions?
what is data access? : Sas-di
What will calendar procedure do?