| showDens {davidTiling} | R Documentation |
Plot function for more than one density
showDens(z, breaks, xat, xtickLabels=paste(xat), col, ylab = "", ...)
z |
List: numeric vectors for computing histograms for |
breaks |
Numeric vector: breaks of the histogram |
xat |
Numeric vector: where to put the x-axis ticks |
xtickLabels |
Character vector: what to write underneath them |
col |
Character vector: colours of the histograms |
ylab |
Character scalar: y-axis label |
... |
futher arguments passed on to plot |
...
returns scale factor
Wolfgang Huber huber@ebi.ac.uk
showDens(list(x1=runif(100), x2=exp(runif(50))-1, x3=runif(20)), breaks=seq(0, 2, 0.2), xat=seq(0, 2, 0.5), col=rainbow(3), xlab="Random Numbers")