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


Please Help Members By Posting Answers For Below Questions

What is the differnce between SDTM 3.1.2 to 3.1.1 version

4625


What is run-group processing?

632


What are the data types in sas?

623


Describe a time when you were really stuck on a problem and how you solved it?

2093


How to limit decimal places for the variable using proc means?

611






Explain how you can debug and test your SAS program?

578


how does sas handle missing values in a merge? : Sas programming

568


How do you specify the number of iterations and specific condition within a single do loop?

632


What are all the problems you faced while validating tables and reports?

3021


what is sas and what are the functions? : Sas-administrator

548


explain the use of % includes a statement in sas? : Sas-administrator

555


what is the different between functions and procs that calculate the same simple descriptive statistics? : Sas programming

597


Explain what is the use of proc gplot?

715


How to specify variables to be processed by the freq procedure?

629


How long can a macro variable be? A token? : sas-macro

727