How to get top scorer student from a class-table having
different sections A,B, C & D? Each section having same
number of students.
Answer Posted / shambhu kumar verma
Proc Sort data = AAA;
by section descending score;
run;
Data BBB;
set AAA;
by section;
if first.section;
run;
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
Mention what is SAS data set?
explain what is data set in sas? : Sas-administrator
what are some differences between proc summary and proc means? : Sas programming
What is a put statement?
How to create list output for cross-tabulations in proc freq?
What is by-group processing?
Name few SAS functions?
In sas admin differentiate between roles and capabilities? : sas-grid-administration
how would you determine the number of missing or nonmissing values in computations? : Sas programming
What are common programming errors committed in sas
Hi, If anyone has base SAS certification dumps, please share.
Describe crosslist option in tables statement?
what are some problems you might encounter in processing missing values? In data steps? Arithmetic? Comparisons? Functions? Classifying data? : Sas programming
What is program data vector (pdv)?
Differentiate input and infile.