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
do you prefer proc report or proc tabulate? Why? : Sas programming
What are the features of SAS?
What are the prime responsibilities of data integration administrator? : Sas-di
what is business intelligence? : Sas-bi
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? What are the implications?
How do you connect the desktop application to metadata server? : sas-grid-administration
Intern stastical programmer written test
What are the five ways to do a table lookup in sas? : sas-grid-administration
What is the use of %include statement?
Tell me about % include and % eval? : sas-macro
What is the difference between where and if statement?
Tell me more about the parameters in macro? : sas-macro
Name some categories in sas 9? : sas-grid-administration
for report generation which one you used proc report or data_null_?