Size: 361
Comment:
|
Size: 385
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 13: | Line 13: |
---- | |
Line 16: | Line 15: |
=== NExtrObs Option === | |
Line 17: | Line 17: |
== Extreme Obs == To display the `N` highest and lowest values of a variable, try: |
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;