Code a PROC SORT on a data set containing State, District
and County as the primary variables, along with several
numeric variables.
Answer Posted / prakash
data info;
infile 'C:\country.txt';
input $state $district $country population total;
proc sort data=info;
by state district country;
proc print data= info ;
run;
| Is This Answer Correct ? | 3 Yes | 4 No |
Post New Answer View All Answers
Approximately what date is represented by the SAS date value of 730?
What is the good sas programming practices for processing large data sets?
What are the prime responsibilities of data integration administrator? : Sas-di
What would you change about your job?
what is the primary data source for the wrs? : Sas-bi
How long can a macro variable be? A token? : sas-macro
Describe crosslist option in tables statement?
what are the considerations when picking a SAS/STAT procedure?
what is function of retain statment
How to create list output for cross-tabulations in proc freq?
what are input dataset and output dataset options? : Sas programming
what is star schema? : Sas-di
Explain the difference between informat and format with an example.
what is the difference between nodup and nodupkey options? : Sas programming
what is program data vector? : Sas-administrator