So, you are looking for confidence intervals for each factor level?
You can use the predict() function to do that.
fit <- aov(values ~ ind, data=otestme)
newdat <- data.frame(ind=factor(levels(otestme$ind)))
cbind(newdat, predict(fit, newdata=newdat, interval="confidence"))
Jean
Anna Dunietz wr
Hi All!
I am interested in testing whether the means for the data I am investigating
are equal to a specific value - let's say 0.01. I have already run a
one-way ANOVA and know that the differences in the means are not
significant, so now I want to know what values the means take on. "otestme"
i
2 matches
Mail list logo