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

: and & modifiers.

860


What is run-group processing?

622


What is the maximum length of the macro variable? : sas-macro

621


Differentiate between proc means and proc summary.

602


Hi all, If Anybody has Advance SAS Certification dumps??? Please share with me. Email: pramod.kalugade03@gmail.com

1581






what is proc Index? and what is proc document?

1994


how can you create zero observation dataset? : Sas programming

639


Briefly explain input and put function?

629


Which statement does not perform automatic conversions in comparisons?

1202


how does sas handle missing values in a merge? : Sas programming

551


what is data integration? : Sas-di

612


I have a dataset concat having a variable a b & c. How to rename a b to e & f?

757


What is a method to debug and test your SAS program?

717


explain the function of substr in sas? : Sas-administrator

556


What commands are used in the case of including or excluding any specific variables in the data set?

594