anova.aovlist {statforbiology} | R Documentation |
Prints an ANOVA table for an 'aovList' object
Description
A wrapper for the 'summary' method for objects of class 'aovlist'.
Usage
## S3 method for class 'aovlist'
anova(object, ...)
Arguments
object |
An object of class |
... |
Other additional arguments |
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.
See Also
aov
, summary
, model.tables
,
TukeyHSD
Examples
# 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)
[Package statforbiology version 0.9.9 Index]