Update in v0.2.1: This function uses lm
to fit a linear model to data, passes it on to Anova
, and outputs the ANOVA table with type II sum of squares with F statistics and P values.
(Previous versions produced type I sum of squares using anova
call.)
It requires a data table, one quantitative dependent variable and one or more independent variables.
The model output can be used to extract coefficients and other information, including post-hoc comparisons. If your experiment design has random factors, use the related function mixed_model
.
This function is related to link{simple_anova}
.
Output of this function can be used with posthoc_Pairwise
, posthoc_Levelwise
and posthoc_vsRef
, or with emmeans
.