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
which date function advances a date, time or datetime value by a given interval? : Sas programming
WHAT IS SAS WEB SERVICE and what are the steps to create an xml service ?
Differentiate between proc means and proc summary.
What does the trace option do?
List down the reasons for choosing sas over other data analytics tools.
Explain how merging helps to combine data sets.
What is the use of %include statement?
In ARRAY processing, what does the DIM function do?
Explain data_null_?
What is the sas data set? : sas-grid-administration
how will you locate the sas platform applications? : Sas-bi
What commands are used in the case of including or excluding any specific variables in the data set?
Hello Friends, am new to this forum and am not good at sas progarmming. please can any one of you send me couple of sample large sample SAS Jobs which can you use 200 MB of data and other sas job upto 25GB of data. am doing a performance testing on our legacy systems and new upgraded system. I would really appreciate if you can do me this favor Thank you Priya
what do you mean by data staging area? : Sas-di
what is the effect of the options statement errors=1? : Sas programming