plotCtHistogram {HTqPCR} | R Documentation |
The distribution of Ct values for a selected qPCR sample is shown in a histogram.
plotCtHistogram(q, card = 1, xlab = "Ct", col, main, n = 30, ...)
q |
an object of class qPCRset. |
card |
integer, the number of the card (sample) to plot. |
xlab |
character string, the label for the x-axis. |
col |
integer or character, the colour for the histogram. |
main |
character string, the plot title. Default is the name of the sample. |
n |
integer, number of bins to divide the Ct values into. |
... |
any other arguments are passed to |
A figure is generated in the current graphics device.
Heidi Dvinge
plotCtDensity
or plotCtBoxes
for including multiple samples in the same plot.
# Load example data data(qPCRraw) # Create the plots plotCtHistogram(qPCRraw, card=2) plotCtHistogram(qPCRraw, card=3, n=50, col="blue")