View source: R/anova_interpret.R
| anova_interpret | R Documentation |
One-Way ANOVA with Post-Hoc Tukey and Plain-English Interpretation
anova_interpret(formula, data, conf.level = 0.95)
formula |
A formula of the form outcome ~ group |
data |
A data frame containing the variables |
conf.level |
Confidence level. Default 0.95 |
An object of class statease_anova containing ANOVA
results, effect size, and post-hoc comparisons. Use print()
to display the formatted report.
df <- data.frame(
score = c(23,45,12,67,34,89,56,43,78,90,11,34),
group = rep(c("A","B","C"), each = 4)
)
result <- anova_interpret(score ~ group, data = df)
print(result)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.