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 you know about sas and what we do? : sas-grid-administration
what versions of sas have you used (on which platforms)? : Sas programming
What is the maximum length of the macro variable?
What are the default statistics that proc means produce?
Are you involved in writing the inferential analysis plan? Tables specifications?
How many ways to overcome a missing values???
How to read an input file in sas?
How we can create SAS USER DEFINED CODE?
What is the different between functions and PROCs that calculate the same simple descriptive statistics?
In sas admin differentiate between roles and capabilities? : sas-grid-administration
Do you need to know if there are any missing values?
explain what is data set in sas? : Sas-administrator
Are you involved in writing the inferential analysis plan? Tables specfications?
How we can call macros with in data step? : sas-macro
What are the special input delimiters used in SAS?