Skip to content
Back to formatted view

Raw Message

Message-ID: <032ECA80-EDBF-454D-AF22-6D0E4676BD16@bjorgeengen.net>
Date: 2009-05-24T13:52:45Z
From: Jarle Bjørgeengen
Subject: sciplot question
In-Reply-To: <4A194CF7.3040708@vanderbilt.edu>

On May 24, 2009, at 3:34 , Frank E Harrell Jr wrote:

> Jarle Bj?rgeengen wrote:
>> Great,
>> thanks Manuel.
>> Just for curiosity, any particular reason you chose standard  
>> error , and not confidence interval as the default (the naming of  
>> the plotting functions associates closer to the confidence  
>> interval .... ) error indication .
>> - Jarle Bj?rgeengen
>> On May 24, 2009, at 3:02 , Manuel Morales wrote:
>>> You define your own function for the confidence intervals. The  
>>> function
>>> needs to return the two values representing the upper and lower CI
>>> values. So:
>>>
>>> qt.fun <- function(x) qt(p=.975,df=length(x)-1)*sd(x)/ 
>>> sqrt(length(x))
>>> my.ci <- function(x) c(mean(x)-qt.fun(x), mean(x)+qt.fun(x))
>
> Minor improvement: mean(x) + qt.fun(x)*c(-1,1) but in general  
> confidence limits should be asymmetric (a la bootstrap).

Thanks,

if the date is normally distributed , symmetric confidence interval  
should be ok , right ?

When plotting the individual sample , it looks normally distributed.

Best regards.
Jarle Bj?rgeengen