Description Usage Format Examples
Highly replicate number amplification curves with an approximate amplification efficiency of 100 percent at cycle number 18. The data were derived from a simulation such as the AmpSim function.
1 |
A data frame with 40 (Cycles) observations on the following 1000 (amplification curves) variables. The columns are all replicates.
1 2 3 4 5 6 7 8 9 10 11 12 | data(Eff1000)
plot(NA, NA, xlim = c(1,40), ylim = c(0,max(Eff1000)), xlab = "Cycle",
ylab = "RFU",
main = "Amplification Curves with 100 Percent Efficiency")
apply(Eff1000[, 1:ncol(Eff1000)], 2, function(x) lines(1:40,x))
Fmean <- rowMeans(Eff1000[, 1:ncol(Eff1000)])
lines(1:40, Fmean, col = "red", lwd = 3)
legend(1, quantile(unlist(Eff1000), 0.9), c("Raw", "Mean"),
pch = c(19,19), col = c(1,2))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.