create.stripplot: Create a strip plot.

Description Usage Arguments Author(s) Examples

View source: R/create.stripplot.R

Description

Create a strip plot based on a dataframe and two dataframe elements.

Usage

1
create.stripplot(data, x, y, rotate = FALSE, xlab = NULL, ylab = NULL, axis.label.font.size = 30, axis.tick.font.size = 10)

Arguments

data

Dataframe containing data to be analyzed

x

Data for x-axis values

y

Data for y-axis values

rotate

Rotate plot (default = FALSE)

xlab

X-axis label

ylab

Y-axis label

axis.label.font.size

Font size for the x-axis and y-axis labels (default = 30)

axis.tick.font.size

Font size for the x-axis and y-axis tick labels (default = 10)

Author(s)

Author: Richard de Borja <richard.deborja@sickkids.ca> Maintainer: Richard de Borja <richard.deborja@sickkids.ca>

Examples

1
2
3
4
5
6
7
8
create.stripplot(
  data = quakes,
  x = 'depth',
  y = 'mag',
  rotate = TRUE,
  xlab = 'Depth',
  ylab = 'Magnitude'
  );

rdeborja/plotting.general documentation built on May 27, 2019, 3:05 a.m.