Size: 308
Comment:
|
Size: 361
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 2: | Line 2: |
A procedure for computing descriptive statistics. |
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;