How to get second top scorer student from a class- table
having different sections A, B, C & D? each section has same
number of student.
Answer Posted / partha
proc rank data=emp descending ties=dense out=s(where=(inc=1));
by deptno ;
var sal;
ranks inc;
run;
quit;
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
what is metadata? : Sas-bi
What do the mod and int function do? : Sas programming
Explain proc sort?
What is the use of stop statement?
How long can a macro variable be? A token? : sas-macro
what do the sas log messages "numeric values have been converted to character" mean? : Sas programming
what is data governance? : Sas-di
how do you test for missing values? : Sas programming
Given an unsorted data set, how to read the last observation to a new data set?
How you are maintaining sas programmes in your company...any specific version control software you are using? If so, tell me the name?
What is the order of application for output data set options, input data set options and SAS statements?
I have 3 years of work experience at a startup and recently got certified in Data Science with SAS. I need to know how to get into the analytics industry
What is the sas data set? : sas-grid-administration
What is the use of the %include statement?
what is the use of proc sql? : Sas programming