Displaying 1 result from an estimated 1 matches for "fooaov".
Did you mean:
foo_o
2010 Jul 12
1
Calculate confidence interval of the mean based on ANOVA
...at calculate the
95% confidence interval. However the interval produced by the earlier
analysis is [0.04741, 0.05824]. Is there some way to calculate a
confidence interval based on an ANOVa that I'm completely missing ?
> nrow(foo)
[1] 18
> mean(foo$CALC)
[1] 0.05282444
> fooaov<-aov(CALC~RUN,data=foo)
> print(fooaov)
Call:
aov(formula = CALC ~ RUN, data = foo)
Terms:
RUN Residuals
Sum of Squares 0.0003991420 0.0003202277
Deg. of Freedom 5 12
Residual standard error: 0.005165814
Estimated effects may be unbalanced
> print(summary(fooaov))
Df Sum Sq Me...