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

anova.aovlistR 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 "aovList"

...

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
rm(list=ls())
data(oats)
oats.aov <- aov(Y ~ N*V + Error(B/V), data = oats)
anova(oats.aov)
emmeans::emmeans(oats.aov, ~N)

OnofriAndreaPG/aomisc documentation built on Feb. 26, 2024, 8:21 p.m.