Sort the LIFEEXP data set. PROC SORT sorts the observations by the birth rate.
proc sort data=lifexp; by populationrate; run;