manova_interpret: MANOVA with Plain-English Interpretation

View source: R/manova_interpret.R

manova_interpretR Documentation

MANOVA with Plain-English Interpretation

Description

MANOVA with Plain-English Interpretation

Usage

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

Arguments

formula

A formula of the form cbind(outcome1, outcome2, ...) ~ group

data

A data frame containing the variables

conf.level

Confidence level. Default 0.95.

Value

An object of class statease_manova containing MANOVA results and interpretation. Use print() to display the formatted report.

Examples

df <- data.frame(
  math    = c(23,45,12,67,34,89,56,43,78,90,11,34),
  english = c(34,56,23,78,45,90,67,54,89,95,22,45),
  group   = rep(c("A","B","C"), each = 4)
)
result <- manova_interpret(cbind(math, english) ~ group, data = df)
print(result)

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