Code a PROC SORT on a data set containing State, District
and County as the primary variables, along with several
numeric variables?
Answer Posted / poornima
proc sort data=x;
var state district county;
run;
| Is This Answer Correct ? | 0 Yes | 8 No |
Post New Answer View All Answers
what can you learn from the sas log when debugging? : Sas programming
how would you determine the number of missing or nonmissing values in computations? : Sas programming
What is the use of stop statement?
How is character variable converted into numeric variable and vice versa?
what is the difference between calculating the 'mean' using the mean function and proc means? : Sas programming
Give some examples where proc report’s defaults are different than proc print’s defaults?
how many display types available in sas bi dashboard? : Sas-bi
how to remove duplicates using proc sql?
Mention what is PROC in SAS?
how many types of prompts are there? : Sas-bi
How do you test for missing values?
Describe the ways in which you can create macro variables? : sas-macro
WHAT IS SAS WEB SERVICE and what are the steps to create an xml service ?
Mention how to limit decimal places for the variable using proc means?
what is the difference between unique key and primary key? : Sas-di