= 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