The
default statistics that the MEANS procedure produces are not always
the ones that you need. You might prefer to limit output to the mean
of the values. Or you might need to compute a different statistic,
such as the median or range of the values.
To specify statistics,
include statistic keywords as options in the PROC MEANS statement.
When you specify a statistic in the PROC MEANS statement, default
statistics are not produced. For example, to determine the median
and range of Perm.Survey numeric values, add the MEDIAN and RANGE
keywords as options.
proc means data=perm.survey median range;
run;
Use the following keywords with PROC MEANS to compute ...