Compute the descriptive statistics for one variable. PROC UNIVARIATE computes the univariate statistics for one variable, Quantity. It uses the default table template, Base.Univariate.Moments from the template store Sashelp.Tmplmst.


proc univariate data=exprev mu0=3.5;
   var Quantity;
title "Default Moments Table";
run;