Create the data set. REFLIB.STATS contains the heights and weights of numerous individuals.
data reflib.stats;
   input height weight;
   datalines;
69.0  112.5
56.5   84.0
...more data lines...
67.0  133.0
57.5   85.0
;