anova_interpret: One-Way ANOVA with Post-Hoc Tukey and Plain-English...

View source: R/anova_interpret.R

anova_interpretR Documentation

One-Way ANOVA with Post-Hoc Tukey and Plain-English Interpretation

Description

One-Way ANOVA with Post-Hoc Tukey and Plain-English Interpretation

Usage

anova_interpret(formula, data, conf.level = 0.95)

Arguments

formula

A formula of the form outcome ~ group

data

A data frame containing the variables

conf.level

Confidence level. Default 0.95

Value

An object of class statease_anova containing ANOVA results, effect size, and post-hoc comparisons. Use print() to display the formatted report.

Examples

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)

statease documentation built on June 7, 2026, 5:06 p.m.