expfit(object, method = c("cpD2", "outlier", "midpoint", "ERBCP"),
model = c("exp", "linexp"), offset = 0, pval = 0.05, n.outl = 3,
n.ground = 1:5, corfact = 1, fix = c("top", "bottom", "middle"),
nfit = 5, plot = TRUE, ...)
method = "cpD2"
, the cycle offset from second derivative maximum.method = "outlier"
, the p-value for the outlier test.method = "outlier"
, the number of successive outlier cycles.method = "midpoint"
, the number of cycles in the noisy ground phase to calculate the standard deviation from.method = "ERBCP"
, the correction factor for finding the exponential region. See 'Details'.TRUE
, a graphical display of the curve and the fitted region is shown.efficiency
for calculation of the second derivative maximum, takeoff
for calculation of the studentized residuals and 'outlier' cycle, and midpoint
for calculation of the exponential phase 'midpoint'. For method 'ERBCP' (Exponential Region By Crossing Points), the exponential region is calculated by $expR = cpD2 - \code{corfact} \cdot (cpD1-cpD2)$. The efficiency is calculated from the exponential fit with $E = exp(b)$ and the inital template fluorescence $F_0 = a$.## using default SDM method
m1 <- pcrfit(reps, 1, 2, l5)
expfit(m1)
## using 'outlier' method
expfit(m1, method = "outlier")
## linear exponential model
expfit(m1, model = "linexp")
Run the code above in your browser using DataLab