multiDensity {BeadExplorer} | R Documentation |
Plot multiple density functions on the same graph
multiDensity(data, xlab = "", ylab = "", main = "", log = TRUE, legend = TRUE, col = rainbow(ncol(data)), position = "topright", xlim = c(min(ox), max(ox)), ylim = c(min(oy), max(oy)), ...)
data |
A matrix of values |
xlab |
A character label for the x-axis |
ylab |
A character label for the y-axis |
main |
A character label for the main title |
log |
Logical, specifying if log axes should be used |
legend |
Logical, specifying if a legend should be drawn |
col |
A vector of colours used to draw each sample |
position |
Position of the legend , see legend |
xlim |
A vector specifying the limits of the x-axis |
ylim |
A vector specifying the limits of the y-axis |
... |
Arguments passed to plot |
A density plot of each sample in the matrix is plotted on the same graph
None
Gareth Elvidge gareth.elvidge@well.ox.ac.uk
See Also as help
data(examplebeadData) ndata<-normalise(examplebeadData) multiDensity(exprs(ndata))