hi guys ...i have one query...
data abc;
input s w k g o t a m;
cards;
1 2 3 4 5 6 7 8
2 3 4 5 6 7 8 9
;
run;
i want the output to be the sorted order(only
variables).observations should not be changed..
Answer Posted / amar
Proc sort data=dataset;
by idnumber ;
run;
| Is This Answer Correct ? | 2 Yes | 25 No |
Post New Answer View All Answers
Describe a time when you were really stuck on a problem and how you solved it?
List down the reasons for choosing sas over other data analytics tools.
How do you control the number of observations and/or variables read or written? Approximately what date is represented by the SAS date value of 730?
how would you create multiple observations from a single observation? : Sas programming
Enlist the syntax rules followed in sas statements.
How to include or exclude specific variables in a data set?
Given an unsorted data set, how to read the last observation to a new data set?
how to create the AE dataset by using SDTMIG specifications and SAP plan by using UNIX platform?
what are validation tools that are used in sas? : Sas-administrator
Do you need to know if there are any missing values?
how many types prompting framework can be broken down to? : Sas-bi
Difference between SAS STATA & SPSS?
what is the difference between: x=a+b+c+d; and x=sum (of a, b, c ,d);? : Sas programming
Give some ways by which you can define the variables to produce the summary report (using proc report)?
how does sas handle missing values in formats? : Sas programming