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 |
Describe a time when you were really stuck on a problem and how you solved it?
Why double trailing @@ is used in input statement?
Explain the purpose of substr functions in sas programming.
Describe the ways in which you can create macro variables?
data task; input id date date9. visit; cards; 101 01jan2015 1 101 02jan2015 2 101 06jan2015 3 102 04jan2015 1 102 07jan2015 2 102 12jan2015 3 103 06jan2015 1 103 13jan2015 2 ; run; write a program to find out missing dates between visits by each subject.
which date functions advances a date time or date/time value by a given interval? : Sas programming
What is the difference between SAS functions and procedures?
What are TEAEs
2 Answers Accenture, Quintiles,
In proc transpose and data step with arrays which one you pick?
0 Answers Accenture, Quintiles,
How you are maintaining sas programmes in your company...any specific version control software you are using? If so, tell me the name?
What are the limitations for memory allocation for SAS variables
Write SAS codes to compare two datasets. Suppose the allowable difference is 0.1.