ow.anova {vannstats} | R Documentation |
Simplified One-Way Analysis of Variance
Description
This function simplifies the call for one-way ANOVA (ow.anova) on a given data frame. Also allows calls for Tukey's Honestly Significant Difference Post-Hoc Comparisons Test (hsd), as well as a means plot (plot).
Usage
ow.anova(df, var1, by1, plot = FALSE, hsd = FALSE)
Arguments
df |
data frame to read in. |
var1 |
the dependent/outcome variable, |
by1 |
the main independent/predictor variable, |
plot |
logical (default set to |
hsd |
logical (default set to |
Value
This function returns the summary results table for a one-way ANOVA, examining mean differences in var1
from data frame df
, across by1
groups.
Examples
data <- mtcars
ow.anova(data,mpg,cyl,plot=TRUE)