Code a PROC SORT on a data set containing State, District
and County as the primary variables, along with several
numeric variables?
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / chirag patel
Proc Sort Data = x ;
by State District County _Numeric_;
run ;
Is This Answer Correct ? | 1 Yes | 4 No |
Answer / poornima
proc sort data=x;
var state district county;
run;
Is This Answer Correct ? | 0 Yes | 8 No |
How we can create SAS USER DEFINED CODE?
Of all your work, where have you been the most successful?
What is the difference between verification and validation?
what are methods to identify duplicate observations?
what are the scrubbing procedures in sas? : Sas programming
What is LAG function?How is it used? can any one explain
3 Answers TRE, Verinon Technology Solutions,
What is the difference between nodup and nodupkey options?
20 Answers iFlex, Makro, Talwar,
explain the main difference between the nodup and nodupkey options? : Sas-administrator
what are some problems you might encounter in processing missing values? In data steps? Arithmetic? Comparisons? Functions? Classifying data? : Sas programming
What is the sas data set? : sas-grid-administration
What is Tabulate.?Why we use it.? Which type of output we get from Tabulate.?
what techniques and/or procs do you use for tables? : Sas programming