LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (March 2009, week 4)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Tue, 24 Mar 2009 13:21:31 -0500
Reply-To:     Mary <mlhoward@avalon.net>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         Mary <mlhoward@AVALON.NET>
Subject:      Re: univariate help
Comments: To: "Terjeson, Mark" <Mterjeson@RUSSELL.COM>
Content-Type: text/plain; format=flowed; charset="iso-8859-1";
              reply-type=original

Mark,

Why not use ODS?

data set1a; set set1; age=input(mds_age,4.); run;

ods output Quantiles= Quantiles; proc univariate data=set1a; var age; run;

data Quantiles2; set Quantiles; informat description $20.; where quantile='25% Q1'; description='Description 1'; keep description estimate; run;

-Mary

----- Original Message ----- From: "Terjeson, Mark" <Mterjeson@RUSSELL.COM> To: <SAS-L@LISTSERV.UGA.EDU> Sent: Tuesday, March 24, 2009 1:04 PM Subject: univariate help

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.

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. > > > >


Back to: Top of message | Previous page | Main SAS-L page