Generate the standardized data and create the output data set StndScore. PROC STANDARD uses a mean of 80 and a standard deviation of 5 to standardize the values. OUT= identifies StndScore as the data set to contain the standardized values. The PRINT option prints the statistics. The ODS LISTING statement closes the listing output so that no output will be viewed.


ods listing close;
proc standard mean=80 std=5 out=StndScore print;