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