anova.aovlist | R Documentation |
A wrapper for the 'summary' method for objects of class 'aovlist'.
## S3 method for class 'aovlist'
anova(object, ...)
object |
An object of class |
... |
Other additional arguments |
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.
aov
, summary
, model.tables
,
TukeyHSD
# A split-plot design
rm(list=ls())
data(oats)
oats.aov <- aov(Y ~ N*V + Error(B/V), data = oats)
anova(oats.aov)
emmeans::emmeans(oats.aov, ~N)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.