From: JanineJDL on
Hi all

Please could any one assist. I have submitted a proc univariate on a
number of variables. How can I get the extreme observations noted to
ouput to a seperate data set???

Thanks

Jdl
From: charles on
On Sep 11, 5:41 am, JanineJDL <janine.dela...(a)standardbank.co.za>
wrote:
> Hi all
>
> Please could any one assist. I have submitted a proc univariate on a
> number of variables. How can I get the extreme observations noted to
> ouput to a seperate data set???
>
> Thanks
>
> Jdl

try this:

ods output ExtremeObs=tmp;
proc univariate data=sashelp.class; var height; run;
ods output close;