This is under development - contributions to support more types of ANOVAs are most welcome.

report_anova(x)

Arguments

x

An object returned from an anova() function (or car::linearHypothesis)

Value

A character string reporting the anova in APA style

Examples

mod1 <- lm(mpg ~ wt + am, mtcars)
mod2 <- lm(mpg ~ wt * am, mtcars)
report_anova(anova(mod1, mod2))
#> <em>F</em>(1, 28) = 13.45, <em>p</em> = .001