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
Have you ever used the SAS Debugger?
describe the interaction table in sas di? : Sas-di
what is sas application server, database server, sas olap server and sas metadata server? : Sas-di
What is the difference between reading data from an external file and reading data from an existing data set?
What is the basic syntax style in SAS?
Explain data_null_?
how the sas basic syntax style described? : Sas-administrator
Describe a time when you were really stuck on a problem and how you solved it?
What is a macro routine?
Enlist the functions performed by sas.
What are the advantages of using sas?
What is PDV?
is data integration and etl programming is same? : Sas-di
What is auto call macro and how to create a auto call macro? What is the use of it? How to use it in sas with macros? : sas-macro
How to import multiple xls files into sas. Out of those files, how to get different values from a single variable and how to find number of rows per value type? We can do this using group by for one xls file with proc sql. Was wondering how I can achieve this for multiple files at the same time. Any ideas?