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 is maximum storage capability of SAS?
what do the pad and dim functions do? : Sas programming
What is the role of sas grid administrator? : sas-grid-administration
how would you create multiple observations from a single observation? : Sas programming
what is the limit of the number of the rows and columns available in the worksheet? : Sas-bi
What are the statements that are executed only?
explain the function of substr in sas? : Sas-administrator
Describe crosslist option in tables statement?
Explain what is the use of proc gplot?
What do you know about sas and what we do? : sas-grid-administration
What do the sas log messages “numeric values have been converted to character” mean? What are the implications?
Give e an example of..
Give e an example of..
Explain input and put function?
which date function advances a date, time or datetime value by a given interval? : Sas programming