mergeBoxplotStats.list: Merges a list of boxplot.stats() elements

mergeBoxplotStats.listR Documentation

Merges a list of boxplot.stats() elements

Description

Merges a list of boxplot.stats() elements.

Usage

## S3 method for class 'list'
mergeBoxplotStats(stats, ...)

Arguments

stats

A list of elements each in a format returned by boxplot.stats.

...

Not used.

Value

Returns a list structure in a format that is returned by boxplot.

Author(s)

Henrik Bengtsson

Examples

library("stats")

x <- matrix(rnorm(1000), ncol=5)
x <- as.data.frame(x)

stats0 <- boxplot(x, plot=FALSE)
stats1 <- lapply(x, FUN=boxplot.stats)
stats1b <- mergeBoxplotStats(stats1)
stopifnot(all.equal(stats0, stats1b))

bxp(stats1b)


aroma.core documentation built on Nov. 16, 2022, 1:07 a.m.