options nodate pagesize=54 linesize=80; /* Read in the input file */ data ex0103; * infile '../../../data/biostat/ex0103.dat'; infile 'C:\\biostat\\data\\ex0103.dat'; input creatclr; run; /* Univariate procedure gives MANY measures on the variable, including mean, SD, Coefficient of variation */ proc univariate; var creatclr; run;