oneway.plots: Exploratory Graphs for Single Factor Designs

View source: R/onewayplots.R

oneway.plotsR Documentation

Exploratory Graphs for Single Factor Designs

Description

Function to create dotplots, boxplots, and design plot (means) for single factor designs

Usage

oneway.plots(Y, fac1, COL = c("#A9E2FF", "#0080FF"))

Arguments

Y

response variable for a single factor design

fac1

predictor variable (factor)

COL

a vector with two colors

Author(s)

Alan T. Arnholt <arnholtat@appstate.edu>

See Also

twoway.plots, checking.plots

Examples

with(data = TIRE, oneway.plots(stopdist, tire))
## Similar graphs with ggplot2 
ggplot(data = TIRE, aes(tire, stopdist, fill = tire)) + 
geom_dotplot(binaxis = "y", stackdir = "center") + coord_flip() + theme_bw()
ggplot(data = TIRE, aes(tire, stopdist, fill = tire)) + geom_boxplot() +
guides(fill = "none") + theme_bw()


alanarnholt/PASWR2 documentation built on June 2, 2022, 5:20 a.m.