multiIntHist | R Documentation |
Generate intensity histograms from multiple batches.
multiIntHist(collected, cols=NULL, xlab="Intensity", ylab="Density",
lwd=2, lty=1, pch=16, cex=2, ...)
collected |
A list of numeric vectors, where each vector contains intensities for a given marker from all cells of a single batch. |
cols |
A vector of R colours of the same length as |
xlab , ylab |
Strings specifying the x- and y-axis labels. |
lwd , lty |
Parameters for plotting the histogram traces. |
pch , cex |
Parameters for plotting the frequency of zeroes. |
... |
Other arguments to pass to |
A histogram is constructed for the set of intensities from each batch, and the histogram outline is plotted with the specified parameters. The frequency of intensities at zero (or negative values) is indicated with a single point at an intensity of zero. This ensures that the number of events at zero and small non-zero intensities can be distinguished.
The process is repeated for all batches so that intensity distributions can be compared between batches.
If cols=NULL
, the rainbow
colour palette is automatically used to generate the colour for each batch.
Some small jitter is added to the zero points so that they do not completely overlap each other.
Histogram traces representing the intensity distributions are produced on the current graphics device.
Aaron Lun
normalizeBatch
multiIntHist(list(rgamma(1000, 1, 1), rgamma(1000, 2, 1), rgamma(1000, 1, 2)))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.