stripboxplot: stripboxplot

Description Usage Arguments Author(s) Examples

Description

Make a boxplot with underlying stripplot

Usage

1
2
stripboxplot(plot.formula, dataset = NULL, xlab = NULL, ylab = NULL,
  frame = FALSE, points.col = "lightgrey", ...)

Arguments

plot.formula

Formula for plotting

dataset

Dataset

xlab

x-axis label

ylab

y-axis label

frame

logical indicating whether to plot full frame

points.col

Colour of background points

...

Additional parameters to be passed to stripchart

Author(s)

Erle Holgersen <Erle.Holgersen@gmail.com>

Examples

1
2
3
4
5
6
test.data <- data.frame(
 x = sample(letters[1:3], 50, replace = TRUE),
 y = rnorm(50)
 );

stripboxplot(y ~ x, test.data);

wuergh/erleR documentation built on June 1, 2019, 2:57 p.m.