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


Please Help Members By Posting Answers For Below Questions

What do you know about sas and what we do? : sas-grid-administration

789


what versions of sas have you used (on which platforms)? : Sas programming

790


What is the maximum length of the macro variable?

885


What are the default statistics that proc means produce?

779


Are you involved in writing the inferential analysis plan? Tables specifications?

3686


How many ways to overcome a missing values???

2533


How to read an input file in sas?

889


How we can create SAS USER DEFINED CODE?

1820


What is the different between functions and PROCs that calculate the same simple descriptive statistics?

1499


In sas admin differentiate between roles and capabilities? : sas-grid-administration

749


Do you need to know if there are any missing values?

786


explain what is data set in sas? : Sas-administrator

716


Are you involved in writing the inferential analysis plan? Tables specfications?

2303


How we can call macros with in data step? : sas-macro

811


What are the special input delimiters used in SAS?

852