Tuesday, June 16, 2009

Code a PROC SORT on a data set containing State, District and County as the primary variables, along with several numeric variables.

proc sort data = mydata;
by state district county _numeric_;
run;

No comments:

Post a Comment