Model of class aov

aov_2

Format

An object of class aov (inherits from lm) of length 13.

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 * Cat2, data = data)
#> Call: #> aov(formula = Sepal.Length ~ Species * Cat1 * Cat2, data = data) #> #> Terms: #> Species Cat1 Cat2 Species:Cat1 Species:Cat2 Cat1:Cat2 #> Sum of Squares 63.21213 0.00263 0.00167 0.27754 0.51374 0.25079 #> Deg. of Freedom 2 1 1 2 2 1 #> Species:Cat1:Cat2 Residuals #> Sum of Squares 0.07335 37.83648 #> Deg. of Freedom 2 138 #> #> Residual standard error: 0.5236195 #> Estimated effects may be unbalanced