multhist {plotrix} | R Documentation |
Given a list, plots a side-by-side barplot containing the histograms of the elements
multhist(x,...)
x |
a list of numeric vectors |
... |
additional arguments to barplot |
plots a side-by-side barplot of the histograms
Ben Bolker
l <- list(runif(10)*10,1:10,c(1,1,1,1,4,8)) multhist(l)