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 (July 2008, week 2)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Mon, 14 Jul 2008 05:55:48 -0700
Reply-To:   Nanita <susana.urbano@GMAIL.COM>
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   Nanita <susana.urbano@GMAIL.COM>
Organization:   http://groups.google.com
Subject:   Re: PROC MEANS
Comments:   To: sas-l@uga.edu
Content-Type:   text/plain; charset=ISO-8859-1

I have just one more question.

LCLM= mean - 1.96*std_dev/(N)^0.5? UCLM =mean - 1.96*std_dev/(N)^0.5?

If so, why do I have an output like this?

N=19 Mean= 2.57046 StdDev= 0.11615 LCLM= 2.51447 UCLM = 2.62644 ?

It shouldn't be: LCLM= 2.57046-(1.96*0.11615)/(19^0.5) = 2.518233 UCLM = 2.57046+(1.96*0.11615)/(19^0.5) = 2.622687 ????

On 14 Jul, 10:55, Nanita <susana.urb...@gmail.com> wrote: > Hi all, > > I have this code to calculate the confidence bands of set of data. > > proc means data =sort_ic > fw=12 > printalltypes > printidvars > alpha=0.05 > vardef=NF > chartype > mean > std > clm; > > var V_ASK V_BID V_MID; > > by codigo_param prazo; > id codigo_param prazo; > > output out=sort_ic_source > mean()= > std()= > lclm()= > uclm()= > / autoname autolabel inherit > ; > run; > > My question is... what is the destribuition used? Normal(0,1)?? > > Thanks in advance


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