How to get top scorer student from a class-table having
different sections A,B, C & D? Each section having same
number of students.
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / aloor
proq sql;
Select * from class where score =(select max(score) from
class);
quit;
| Is This Answer Correct ? | 1 Yes | 0 No |
i have a data set with 20 observations i want label from 8 to 15 observations ? how you create this one.
How would you delete duplicate observations?
There is a field containing a date. It needs to be displayed in the format “ddmonyy” if it’s before 1975,”dd mon ccyy” if it’s after 1985, and as ‘disco years’ if its between 1975 and 1985. How would you accomplish this in data step code? Using only PROC FORMAT.
What are the different operating system platforms in which we can use sas? : sas-grid-administration
What are the efficacy variables in your study?
2 Answers Accenture, Quintiles,
What is the use of divide function?
how are numeric and character missing values represented internally? : Sas programming
What are the new features included in the new version of SAS Programming Language?
what has been your most common programming mistake? : Sas programming
Can Some one Explain How the Datasets from SAS can be loaded in to the MVS OS?
If you set a label in the data step and call a proc freq on the data, how do you display the data without the labels and just the variables.
Do you know the features of sas?