Code a PROC SORT on a data set containing State, District
and County as the primary variables, along with several
numeric variables.
Answer Posted / daya
data daya;
infile 'c:\country.txt';
input &state &district &country population total:
proc sort data=daya:
by state;
proc print data=daya;
run;
| Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
explain what is factor analysis? : Sas-administrator
What would be the result of the following SAS function (given that 31 Dec, 2000 is Sunday)?
Mention few capabilities of sas framework.
how will you location sas platform applications available from web browser? : Sas-bi
what is sas application server, database server, sas olap server and sas metadata server? : Sas-di
What is the SAS data set?
what is the purpose of _error_? : Sas programming
how do the in= variables improve the capability of a merge? : Sas programming
Did you used proc test? when?
What do the SAS log messages "numeric values have been converted to character" mean?
Explain what Proc glm does?
What is the basic structure of a sas program?
What is the difference between %put and symbolgen? : sas-macro
Tell me more about the parameters in macro? : sas-macro
What is the different between functions and PROCs that calculate the same simple descriptive statistics?