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
How we can call macros with in data step? : sas-macro
What is a macro routine?
explain the main difference between the nodup and nodupkey options? : Sas-administrator
what do the pad and dim functions do? : Sas programming
Describe the ways in which you can create macro variables?
How can sas program be validated?
What are the prime responsibilities of data integration administrator? : Sas-di
what are the types of interactive display types? : Sas-bi
how do the in= variables improve the capability of a merge? : Sas programming
How substr function works in sas?
Mention some common errors that are usually committed in sas programming.
how to create the AE dataset by using SDTMIG specifications and SAP plan by using UNIX platform?
what is the difference between infile and input? : Sas-administrator
What is the difference between class statement and by statement in proc means?
What are the data types that sas contain?