[R] CI with sd

Ethan Johnsons ethan.johnsons at gmail.com
Thu Oct 19 18:54:39 CEST 2006


Thx so much, Chuck.

R is a reallt sweet tool to use..

I can try many things with i.e. intervals (gls(e.coli ~ 1), level=0.90).
It is a great help.

ej

On 10/19/06, Chuck Cleland <ccleland at optonline.net> wrote:
> Ethan Johnsons wrote:
> > Please let me ask you another quick question.
> > I have results for e coli, and am trying to get 95% CI with the sd (1.783956).
> > I got the result from another tool as (1.21, 3.42).
> > But, I like to verify it with R.  What function do you use for this?
> >
> >> e.coli=c(27.5,24.6,25.3,28.7,23,26.8,24.7,24.3,24.9)
> >> sd(e.coli, na.rm = FALSE)
> > [1] 1.783956
> >
> > Sorry for the newbie question.
>
> e.coli <- c(27.5,24.6,25.3,28.7,23,26.8,24.7,24.3,24.9)
> library(nlme)
> mod1 <- gls(e.coli ~ 1)
> intervals(mod1)
>
> Approximate 95% confidence intervals
>
>  Coefficients:
>                lower     est.    upper
> (Intercept) 24.16206 25.53333 26.90460
> attr(,"label")
> [1] "Coefficients:"
>
>  Residual standard error:
>    lower     est.    upper
> 1.204986 1.783956 3.417651
>
> > thx much
> >
> > ej
> >
> > ______________________________________________
> > R-help at stat.math.ethz.ch mailing list
> > https://stat.ethz.ch/mailman/listinfo/r-help
> > PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
> > and provide commented, minimal, self-contained, reproducible code.
>
> --
> Chuck Cleland, Ph.D.
> NDRI, Inc.
> 71 West 23rd Street, 8th floor
> New York, NY 10010
> tel: (212) 845-4495 (Tu, Th)
> tel: (732) 512-0171 (M, W, F)
> fax: (917) 438-0894
>
>



More information about the R-help mailing list