How would you keep from overlaying the a SAS set with its
sorted version?
Answer Posted / ganesh
first create the dataset by giving some name after that
sort the data by specifying out option by giving new
dataset name. The dataset can be sorter either ascending or
descending by default it going to be an ascending.
Data god;
input name no sal;
datalines;
ab 12 3500
bc 13 4500
;
run;
proc sort data=god out=man;
by name;
run;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
what is study design in while working with SAS? what are screening variables in SAS?
how to remove duplicates using proc sql?
How to create a permanent sas data set?
What is the difference between match merge and one to one merge?
Explain what is data step?
where are dashboard components are created and maintained? : Sas-bi
what type of graphs we will create(for 2+years candidates)?
What is the maximum length of the macro variable? : sas-macro
what is operational data and operational system? : Sas-di
for whom is sas data integration studio designed? : Sas-di
: and & modifiers.
Difference between sum function and using “+” operator?
what is the effect of the options statement errors=1? : Sas programming
Can you suggest us materials for sdtm mapping?
what is hash files in sas and why we are using this one in sas?