Learn R Programming

statforbiology (version 0.9.9)

anova.aovlist: Prints an ANOVA table for an 'aovList' object

Description

A wrapper for the 'summary' method for objects of class 'aovlist'.

Usage

# S3 method for aovlist
anova(object, ...)

Value

An object of class "summary.aovlist". It is a list (one object per error stratum) of ANOVA tables (class "anova") with a row for each term in the model, plus one for "Residuals" if there are any.

Arguments

object

An object of class "aovList"

...

Other additional arguments

See Also

Examples

Run this code
# A split-plot design
data(oats)
oats.aov <- aov(Y ~ N*V + Error(B/V), data = oats)
anova(oats.aov)
emmeans::emmeans(oats.aov, ~N)

Run the code above in your browser using DataLab