multhist {plotrix}R Documentation

Plot a multiple histogram, as a barplot

Description

Given a list, plots a side-by-side barplot containing the histograms of the elements

Usage

 multhist(x,breaks="Sturges",...)

Arguments

x a list of numeric vectors
breaks vector of breakpoints passed to hist.
... additional arguments to barplot

Value

plots a side-by-side barplot of the histograms

Author(s)

Ben Bolker

See Also

hist,barplot

Examples

 l <- list(runif(10)*10,1:10,c(1,1,1,1,4,8))
 multhist(l)

[Package plotrix version 2.0.2 Index]