Date: Tue, 24 Mar 2009 13:27:30 -0500
Reply-To: "./ ADD NAME=Data _null_;" <iebupdte@GMAIL.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: "./ ADD NAME=Data _null_;" <iebupdte@GMAIL.COM>
Subject: Re: univariate help
In-Reply-To: <16FD64291482A34F995D2AF14A5C932C044F5A1B@MAIL002.prod.ds.russell.com>
Content-Type: text/plain; charset=ISO-8859-1
On 3/24/09, Terjeson, Mark <Mterjeson@russell.com> wrote:
> Hi All,
>
> In proc univariate, if I only specify one percentile
> in the PCTLPTS, e.g. PCTLPTS=25, the proc
> still says you are required to provide PCTLPRE
> prefix names.
>
> Is there a way to not have to give prefixes when
> there is only one percentile? i.e. It would be
> extremely helpful if I could do one percentile and
> just have the results go back into the same incoming
> variable names. Goal: end up with same variable
> names so can append these rows.
Do you have to use UNIVARIATE?
proc summary data=sashelp.class;
var weight age height;
output out=test P25=;
run;
proc print;
run;
>
> Any tricks or methods to have resulting variables
> be the same?
>
> (yeah, yeah, I know the doc says it is required.
> But SAS-L is good for getting beyond the doc
> sometimes.......)
>
>
> > Mark Terjeson
> > Senior Programmer Analyst
> Investment Management & Research
> > Russell Investments
> > 253-439-2367
> >
> >
> > Russell
> > Global Leaders in Multi-Manager Investing
> >
> > The information contained in this message is intended only for the use
> > of the recipient named above. This message may contain confidential
> > or undisclosed information. If the reader of this message is not the
> > intended recipient or an agent responsible for delivering to the
> > intended recipient, you are hereby notified that you have received
> > this message in error, and that any review, dissemination,
> > distribution or copying of it is strictly prohibited. If you have
> > received this message in error, please notify us by telephone
> > immediately at 253-439-2367. Thank you for your cooperation.
> >
> >
> >
> >
>
|