Code a PROC SORT on a data set containing State, District
and County as the primary variables, along with several
numeric variables.
Answer Posted / chiranjeevi
data code;
infile'C:\Documents and Settings\admin\Desktop\country.txt';
input state$ district$ county$ population total;
proc sort data=code out=count;
by state district county;
run;
proc print data=count;
run;
Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
Describe the function and utility of the most difficult SAS macro that you have written?
Explain the use of proc gplot? : sas-grid-administration
What is the function of output statement in a SAS Program?
What do you understand by the term Normal Distribution?
Can you explain the process of calendar?
Explain input and put function?
Where do you use proc means over proc freq?
Differentiate between proc means and proc summary.
What are the prime responsibilities of data integration administrator? : Sas-di
What’s the difference between var b1 – b3 and var b1 — b3?
What is the general format of function in sas? : sas-grid-administration
what are all the reports you generated in your recent project?
What are the automatic variables for macro? : sas-macro
how can you create zero observation dataset? : Sas programming
Explain append procedure?