Compute descriptive statistics for two variables. PROC UNIVARIATE computes descriptive statistics for two variables,
CityPop_80 and CityPop_90. ODS routes the selected output objects to the HTML
and PRINTER destinations.
proc univariate data=statepop mu0=3.5;
var citypop_90 citypop_80;
run;