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 |
"What is the difference between proc sort nodup and proc sort nodupkey?"
How to write duplicate records into a separate dataset using sort?
if x=round(26.3,10)-1 then x= how much and how explain?
Describe the ways in which you can create a macro variable?
1.What is the difference between _NULL_ , _ALL_, and _N_? 2.What are the uses of _NULL_ using in Data Steps? Can we _NULL_ in Proc Steps also? 3.How do call the macro variable in Data Steps? 4.How to construct Pivot tables in Excel Using SAS?
What do the sas log messages “numeric values have been converted to character” mean? What are the implications?
Difference between sum function and using “+” operator?
why is sas considered self-documenting? : Sas programming
Differentiate input and infile.
what is pdv? how it is related to input buffer in sas?
In sas admin differentiate between roles and capabilities? : sas-grid-administration
what are the new features included in the new version of SAS i.e., SAS9.1.3?
5 Answers College School Exams Tests, Wockhardt,