Description Usage Arguments Value Author(s) Examples
View source: R/doCalibration.R
Perform calibration
1 | doCalibration(DF, weights = NULL)
|
DF |
data frame, it must contain a column named 'Concentration' and a column named 'Response' |
weights |
default is NULL |
dataframe, the quantification result
Yonghui Dong
1 2 3 4 | Concentration <- rep(c(10, 50, 100, "unknown"), each = 3)
Response <- c(133, 156, 177, 6650, 7800, 8850, 13300, 15600, 17700, 156, 1450, 1400)
DF <- cbind.data.frame(Concentration = Concentration, Response = Response)
result <- doCalibration(DF)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.