boxplot {Rcssplot} | R Documentation |
Draw a styled boxplot
Description
This is a wrapper for R's boxplot function. See R's documentation for graphics::boxplot for further details.
Usage
boxplot(x, Rcss = "default", Rcssclass = NULL, ...)
Arguments
x |
data for boxplot; either single numeric vector or a list of numeric vectors; see documentation of boxplot() |
Rcss |
style sheet object. Leave "default" to use a style defined via RcssSetDefaultStyle() |
Rcssclass |
character, style class |
... |
Further parameters, see documentation of graphics::boxplot |
Examples
# draw a complete boxplot
dataset <- list(A=rpois(30, 10), B=rpois(30, 20))
boxplot(dataset, col=c("#dd0000", "#dd8888"))
[Package Rcssplot version 1.0.0 Index]