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 |
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 spli-plot design
rm(list=ls())
data(oats)
oats.aov <- aov(Y ~ N*V + Error(B/V), data = oats)
anova(oats.aov)
TukeyHSD(oats.aov)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.