[R] ANOVA in Randomized-complete blocks design

Richard M. Heiberger rmh at temple.edu
Fri Nov 3 05:46:15 CET 2006


my apologies.

anova() doesn't work on class "aovlist".
It is necessary to use summary().
They are similar for "aov", but not for "aovlist".

wing <- read.table("tmp.dat", header=TRUE)
wing.aov <- aov( wing ~ cage + Error(cage:female), data=wing )
summary(wing.aov)



More information about the R-help mailing list