multhist {plotrix} | R Documentation |
Given a list, plots a side-by-side barplot containing the histograms of the elements
multhist(x,breaks="Sturges",...)
x |
a list of numeric vectors |
breaks |
vector of breakpoints passed to hist . |
... |
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)