Prev: SAS Oracle Update with work library
Next: Back Transformations of Arcsine Square root Transformation
From: JanineJDL on 11 Sep 2009 06:41 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 11 Sep 2009 11:38
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; |