Differences between revisions 2 and 3
Revision 2 as of 2023-01-14 05:44:02
Size: 308
Comment:
Revision 3 as of 2023-03-30 15:06:43
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.


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;


CategoryRicottone

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