Learn R Programming

report (version 0.1.0)

report.aov: ANOVAs Report

Description

Create a report of an ANOVA.

Usage

# S3 method for aov
report(
  model,
  interpretation = "field2013",
  omega_squared = "partial",
  eta_squared = NULL,
  epsilon_squared = NULL,
  ...
)

Arguments

model

Object of class aov, anova or aovlist.

interpretation

Effect size interpretation set of rules (see interpret_omega_squared).

omega_squared

Compute omega squared as index of effect size. Can be "partial" (adjusted for effect size) or "raw".

eta_squared

Compute eta squared as index of effect size. Can be "partial" (adjusted for effect size), "raw" or "adjusted" (the latter option only for anova-tables from mixed models).

epsilon_squared

Compute epsilon squared as index of effect size. Can be "partial" (adjusted for effect size) or "raw".

...

Arguments passed to or from other methods.

Value

A list-object of class report, which contains further list-objects with a short and long description of the model summary, as well as a short and long table of parameters and fit indices.

See Also

table_short or text_short to access the related content of the report-object.

Examples

Run this code
# NOT RUN {
data <- iris
data$Cat1 <- rep(c("A", "B"), length.out = nrow(data))
model <- aov(Sepal.Length ~ Species * Cat1, data = data)
r <- report(model)
r
table_short(r)
# }

Run the code above in your browser using DataLab