/*************Figure 3***************************/ proc univariate data=sasdata.armspan; ods select histogram; var height; histogram height/vscale=count endpoints=140 to 204 by 8; run;