SAS Univariate
A procedure for computing descriptive statistics.
Contents
Usage
Extreme Obs
To display the N highest and lowest values of a variable, try:
ods select extremeobs; proc univariate data=LIBREF.TABLE nextrobs=10; var VARLIST; run;