Size: 385
Comment:
|
← Revision 5 as of 2023-03-30 20:08:29 ⇥
Size: 387
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 17: | Line 17: |
To display the `N` highest and lowest values of a variable, use the '''`nextrobs`''' option. | To display the `N` highest and lowest values of a variable, use the '''`NEXTROBS`''' option. |
SAS Univariate
A procedure for computing descriptive statistics.
Contents
Usage
NExtrObs Option
To display the N highest and lowest values of a variable, use the NEXTROBS option.
ods select extremeobs; proc univariate data=LIBREF.TABLE nextrobs=10; var VARLIST; run;