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 / guest

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;
proc sort data=abc;
run;

Is This Answer Correct ?    2 Yes 24 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

how do you want missing values handled? : Sas programming

535


why is sas data integration studio important? : Sas-di

561


What does P-value signify about the statistical data?

853


how do you test for missing values? : Sas programming

581


how can you create zero observation dataset? : Sas programming

639






explain the concepts and capabilities of business object? : Sas-bi

540


what are some differences between proc summary and proc means? : Sas programming

507


what is the effect of the options statement errors=1? : Sas programming

594


Explain the use of proc gplot? : sas-grid-administration

556


Why double trailing @@ is used in input statement?

702


why is a stop statement needed for the point=option on a set statement? : Sas programming

587


What is the use of stop statement?

644


What is program data vector (pdv) and what are its functions?

631


What is program data vector (pdv)?

635


Explain what Proc glm does?

637