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
what do the sas log messages "numeric values have been converted to character" mean? : Sas programming
what is study design in while working with SAS? what are screening variables in SAS?
what are sas/access and sas/connect? : Sas programming
do you need to know if there are any missing values? : Sas programming
Can you suggest us materials for sdtm mapping?
Describe a time when you were really stuck on a problem and how you solved it?
What is slibref?
what are the considerations when picking a SAS/STAT procedure?
How long can a macro variable be? A token? : sas-macro
What is the difference between %put and symbolgen? : sas-macro
is data integration and etl programming is same? : Sas-di
Explain the difference between using drop = data set option in set and data statement?
do you prefer proc report or proc tabulate? Why? : Sas programming
What are the ways in which macro variables can be created in sas programming?
In ARRAY processing, what does the DIM function do?