Model of class aovlist

aovlist_2

Format

An object of class aovlist (inherits from listof) of length 3.

Examples

data <- iris data$Cat1 <- rep(c("X", "X", "Y"), length.out = nrow(data)) data$Cat2 <- rep(c("A", "B"), length.out = nrow(data)) aov(Sepal.Length ~ Species * Cat1 + Error(Cat2), data = data)
#> #> Call: #> aov(formula = Sepal.Length ~ Species * Cat1 + Error(Cat2), data = data) #> #> Grand Mean: 5.843333 #> #> Stratum 1: Cat2 #> #> Terms: #> Species:Cat1 #> Sum of Squares 0.001666667 #> Deg. of Freedom 1 #> #> 1 out of 2 effects not estimable #> Estimated effects are balanced #> #> Stratum 2: Within #> #> Terms: #> Species Cat1 Species:Cat1 Residuals #> Sum of Squares 63.21213 0.00263 0.27754 38.67437 #> Deg. of Freedom 2 1 2 143 #> #> Residual standard error: 0.5200482 #> Estimated effects may be unbalanced