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
Hi,by usining ptf how we have to combine (likr merge)10 datasets at a time in the oracle database(and write a macro code also)?Like this i have a douts a lot if you dont mind may please send one text mail for me(madhusudhanap16@gmail.com)?
What areas of SAS are you most interested in?
What are the data types in sas?
How might you use MOD and INT on numeric to mimic SUBSTR on character Strings?
For clinical entire study how many tables will create approx?
Why and when do you use proc sql?
How do dates work in sas?
Hi, If anyone has base SAS certification dumps, please share.
How would you define the end of a macro? : sas-macro
Name and describe few sas character functions that are used for data cleaning in brief.
How to create a permanent sas data set?
Do you need to compute new variables? If so,should you do this before you execute the report-writing procedure?
what is proc Index? and what is proc document?
How to specify variables to be processed by the freq procedure?
what is hierarchy flattening? : Sas-di