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 would you invoke a macro? : sas-macro
How do you read in the variables that you need?
what is sas? is a package or tool? give me introduction about sas?
Hi Friends, Am Priya,new to your forum. am looking for Interview questions on SAS Platform Administration. I searched everywhere but I couldn't find them,please can anyone help me with complete interview questions normally everyone will face in the interviews on SAS Administration. am really facing problems in the interviews,am not able to answer any of their questions. I would really appreciate all your help if you can email the complete Interview Questions to priyafeb84@gmail.com Kindly awaiting for your reply with eager
what is metadata? : Sas-bi
How to convert a given date value into SAS date
9 Answers CitiGroup, Quintiles,
which features do you use to check the data validations and errors? : Sas-administrator
what do the sas log messages "numeric values have been converted to character" mean? : Sas programming
What is the basic structure of the SAS base program?
What are the features of SAS?
how are numeric and character missing values represented internally? : Sas programming
"What is the difference between proc sort nodup and proc sort nodupkey?"