biBoxplot: A bi-boxplot

View source: R/biBoxplot.R

biBoxplotR Documentation

A bi-boxplot

Description

Draws boxplots and bi-boxplots.

Usage

biBoxplot(
  df1,
  df2 = df1,
  probs = c(0.01, 0.25, 0.5, 0.75, 0.99),
  width = 0.2,
  sta_wd = 0.5,
  median = NULL,
  staples = NULL,
  whiskers = NULL,
  col_left = "grey75",
  col_right = col_left,
  add = FALSE,
  at = NULL
)

Arguments

df1, df2

first and second set of boxplots.

probs

numeric vector of five probabilities, see stats::quantile().

width

a vector giving the relative widths of the boxes making up the plot.

sta_wd

staple width.

median

a list of arguments passed to graphics::lines() to custom the median line.

staples

a list of arguments passed to graphics::lines() to custom the staples.

whiskers

a list of arguments passed to graphics::lines() to custom the whiskers.

col_left

color of the left boxes.

col_right

color of the right boxes.

add

a logical. Should the biboxplots be added on the current graph? If FALSE then a new plot is created.

at

numeric vector giving the locations where the boxplots should be drawn. Same default behavior as in graphics::boxplot().

Details

This functions does not attempt to assess the distributions as it is based on quantiles.

Examples

dis1 <- list(stats::rnorm(1000, sd = 0.25))
biBoxplot(dis1)


inSileco/graphicsutils documentation built on Sept. 12, 2022, 11:13 p.m.