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 SAS/ACCESS and SAS/CONNECT?
9 Answers Accenture, iFlex, TCS,
Name statements that are execution only.
where will go the observations that were deleted by delete statement?
Explain substr function?
what is validvarname and varnum? why we are using this options; explain with a syntax for this options?
What is SAS? is it a software just for use or we can creat something over there?
Name and describe few sas character functions that are used for data cleaning in brief.
What is PROC in SAS?
How do you test for missing values?
what are all the reports you generated in your recent project?
0 Answers Accenture, Quintiles,
Mention some common errors that are usually committed in sas programming.
Can you excute a macro within a macro? Describe.