boxplot: Draw a styled boxplot

Description Usage Arguments Examples

View source: R/RcssWrappers.R

Description

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

Usage

1
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

1
2
3
# draw a complete boxplot
dataset <- list(A=rpois(30, 10), B=rpois(30, 20))
boxplot(dataset, col=c("#dd0000", "#dd8888"))

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