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
Give an example where SAS fails to convert character value to numeric value automatically?
What are the differences between proc means and proc summary?
How to create an external dataset with sas code?
name several ways to achieve efficiency in your program? : Sas programming
What are the data types does SAS contain?
What is the use of the %include statement?
What do the mod and int function do? : Sas programming
Do you need to compute new variables? If so,should you do this before you execute the report-writing procedure?
what is the basic structure sas administrator? : Sas-administrator
what are the scrubbing procedures in sas? : Sas programming
what is operational data and operational system? : Sas-di
Explain the main difference between the sas procedures and functions? : Sas-administrator
What is PROC in SAS?
What is slibref?
what is sas application server, database server, sas olap server and sas metadata server? : Sas-di