Code a PROC SORT on a data set containing State, District
and County as the primary variables, along with several
numeric variables?
Answer Posted / chirag patel
Proc Sort Data = x ;
by State District County _Numeric_;
run ;
| Is This Answer Correct ? | 1 Yes | 4 No |
Post New Answer View All Answers
What would you change about your job?
How to create list output for cross-tabulations in proc freq?
name the scheduler for scheduling job and explain the scheduler? : Sas-di
explain about data integrator metadata reports? : Sas-di
What is maximum storage capability of SAS?
If you were told to create many records from one record, show how you would do this using array and with proc transpose?
List down the reasons for choosing sas over other data analytics tools.
What is the difference between %local and %global? : sas-macro
If you need the value of a variable rather than the variable itself what would you use to load the value to a macro variable? : sas-macro
Can you execute macro within another macro? If so, how would sas know where the current macro ended and the new one began? : sas-macro
if a variable contain dates like "2015/01"---"2015/12" (yymm) ,How to add day to those dates,if them month is jan then 31 if the month is feb then 28 so on ...
how can you import .csv file in to sas? : Sas programming
how would you determine the number of missing or nonmissing values in computations? : Sas programming
what is the function of catx syntax? : Sas-administrator
explain the function of substr in sas? : Sas-administrator