Learn R Programming

dpcR (version 0.1.2-1)

bioamp: A function to analyze plot the raw data from a BioRad droplet digital PCR experiment

Description

bioamp is a function to plot and analyze the amplitude data of a BioRad droplet digital PCR experiment.

Usage

bioamp(data = data, amp_x = 1, amp_y = 2, cluster = 3,
       robust = TRUE, plot = TRUE, stat = TRUE, 
       xlab = "Assay 1 Amplitude", 
       ylab = "Assay 2 Amplitude", ...)

Arguments

data
object of class what containing the amplitude data.
robust
Is the method used to calculate the location (mean or median) and dispersion (standard deviation or median absolute deviation).
plot
logical, if TRUE, the plot is printed.
amp_x
is the first amplitude (x-axis).
amp_y
is the second amplitude (y-axis).
cluster
are the clusters of the plot.
stat
logical, if TRUE, the statistics of the droplet digital PCR experiment are calculated.
xlab
x-label of the plot.
ylab
y-label of the plot.
...
other arguments passed to the plot function (see plot.default for details).

Examples

Run this code
par(mfrow = c(1,2))
bioamp(data = pds_raw[["A01"]], main = "Well A01", pch = 19)
bioamp(data = pds_raw[["A02"]], main = "Well A02", pch = 19)
par(mfrow = c(1,1))

Run the code above in your browser using DataLab