Sort and print the output data set.
proc sort data=gpscounties; by site; run; proc print data=gpscounties; var site state county x y; run;