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.
# 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)
# }