Print the data set. PROC PRINT prints the COMBINED data
set. ROUND rounds the standardized values to two decimal places. The TITLE
statement specifies a title.
proc print data=combined noobs round;
title 'Standardized Test Scores for a College Course';
run;