stripchart: Draw styled strip chart

Description Usage Arguments Examples

View source: R/RcssWrappers.R

Description

This is a wrapper for R's stripchart function. See R's documentation for graphics::stripchart for further details.

Usage

1
stripchart(x, Rcss = "default", Rcssclass = NULL, ...)

Arguments

x

list of numeric vectors

Rcss

style sheet object. Leave "default" to use a style defined via RcssSetDefaultStyle()

Rcssclass

character, style class

...

Further parameters, see documentation of graphics::stripchart

Examples

1
2
3
4
# draw a complete strip-chart plot
dataset <- list(A=c(1,9,3,8), B=c(3,4,2,9,2), C=rpois(8, 10))
stripchart(dataset)
stripchart(dataset, method="jitter", vertical=TRUE, pch=19)

Rcssplot documentation built on Jan. 8, 2020, 5:11 p.m.