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
I have a dataset concat having a variable a b & c. How to rename a b to e & f?
what is study design in while working with SAS? what are screening variables in SAS?
What do you understand by the term Normal Distribution?
why is sas data integration studio important? : Sas-di
Explain substr function?
what do the sas log messages "numeric values have been converted to character" mean? What are the implications? : Sas programming
Mention the difference between ceil and floor functions in sas?
What does proc print, and proc contents are used for?
What does P-value signify about the statistical data?
What is connection profile? : sas-grid-administration
How are numeric and character missing values represented internally?
Do we follow ADAM in analysis dataset development?How? Usually which version? Why is it necessary?
how do you test for missing values? : Sas programming
Name types of category in which SAS Informats are placed?
What is the good sas programming practices for processing large data sets?