Differences between revisions 1 and 4 (spanning 3 versions)
Revision 1 as of 2023-01-14 04:28:11
Size: 307
Comment:
Revision 4 as of 2023-03-30 15:17:26
Size: 385
Comment:
Deletions are marked like this. Additions are marked like this.
Line 2: Line 2:

A procedure for computing descriptive statistics.
Line 11: Line 13:
----
Line 14: Line 15:
=== NExtrObs Option ===
Line 15: Line 17:
== ExtremeObs ==

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.


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;


CategoryRicottone

SAS/Univariate (last edited 2023-03-30 20:08:29 by DominicRicottone)