Code a PROC SORT on a data set containing State, District
and County as the primary variables, along with several
numeric variables.
Answer Posted / pallavi
data abc;
infile 'c:\country.txt';
input &state &district &country population total:
proc sort data=abc:
by state district country;
proc print data=abc;
run;
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
To what type of programms have you used scratch macros?
Which are the statements whose placement in the data step is critical?
State the difference between INFORMAT and FORMAT ?
What is the role of unrestrictive users? : sas-grid-administration
What do you code to create a macro? : sas-macro
What is the difference between SAS functions and procedures?
why a stop statement is needed for the point= option on a set statement?
Can you execute a macro within a macro? Describe. : sas-macro
How do you debug and test your SAS programs?
What are SAS/ACCESS and SAS/CONNECT?
This entry was posted in General. Bookmark the permalink. Post a comment or leave
Are you involved in writing the inferential analysis plan? Tables specfications?
how can you import .csv file in to sas? : Sas programming
What is maximum storage capability of SAS?
In SAS explain which statement does not perform automatic conversions in comparisons?