stripchart {Rcssplot} | R Documentation |
Draw styled strip chart
Description
This is a wrapper for R's stripchart function. See R's documentation for graphics::stripchart for further details.
Usage
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
# 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)
[Package Rcssplot version 1.0.0 Index]