Code a PROC SORT on a data set containing State, District
and County as the primary variables, along with several
numeric variables?
Answer Posted / sassss
THE PREVIOUS ANSWER IS WRONG; THE SYNTAX OF PROC SORT IS AS
FOLLOWS
PROC SORT DATA=<DNAME>;
BY <VARNAME/S>;
RUN;
HENCE THE CORRECT ANSWER TO THE QUESTION IS:
proc sort data=x;
BY state district county;
run;
| Is This Answer Correct ? | 14 Yes | 0 No |
Post New Answer View All Answers
what do the mod and int function do? What do the pad and dim functions do? : Sas programming
Give some examples where proc report’s defaults are same as proc print’s defaults?
what is operational data and operational system? : Sas-di
Explain append procedure?
Mention the difference between ceil and floor functions in sas?
In sas, what are the areas that you are most interested in? : sas-grid-administration
What is SAS? What are the functions does it performs?
what is the purpose of _error_? : Sas programming
Do you know the features of sas?
what do you mean by data staging area? : Sas-di
what are input dataset and output dataset options? : Sas programming
For clinical entire study how many tables will create approx?
what is sas application server? : Sas-di
how to read the variables in sas? : Sas-administrator
how to remove duplicates using proc sql?