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 |
if i having variables named a b c d e f ,how to find total of each variable ????give syntax...??
What is maximum number of rows and cols can be handled in SAS?
I need level 2 to 5 sas using companies in india
Explain input and put function?
What is the maximum length of the macro variable? : sas-macro
How do you define proc in sas? : sas-grid-administration
How sas treats the dsd delimiters?
How do you generate random samples?
How do you add a number to a macro variable?
What would be the result of the following SAS function (given that 31 Dec, 2000 is Sunday)?
What is a macro routine?
how to assign a macro value to a variable?