View source: R/manova_interpret.R
| manova_interpret | R Documentation |
MANOVA with Plain-English Interpretation
manova_interpret(formula, data, conf.level = 0.95)
formula |
A formula of the form cbind(outcome1, outcome2, ...) ~ group |
data |
A data frame containing the variables |
conf.level |
Confidence level. Default 0.95. |
An object of class statease_manova containing MANOVA
results and interpretation. Use print() to display the
formatted report.
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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.