boxplot: Draw a styled boxplot

View source: R/RcssWrappers.R

boxplotR 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"))


Rcssplot documentation built on April 4, 2025, 2:35 a.m.