powered by
This is a wrapper for R's boxplot function. See R's documentation for graphics::boxplot for further details.
boxplot(x, Rcss = "default", Rcssclass = NULL, ...)
data for boxplot; either single numeric vector or a list of numeric vectors; see documentation of boxplot()
style sheet object. Leave "default" to use a style defined via RcssSetDefaultStyle()
character, style class
Further parameters, see documentation of graphics::boxplot
# NOT RUN { # draw a complete boxplot dataset <- list(A=rpois(30, 10), B=rpois(30, 20)) boxplot(dataset, col=c("#dd0000", "#dd8888")) # }
Run the code above in your browser using DataLab