doCalibration {CCWeights}R Documentation

Perform Calibration

Description

Perform calibration

Usage

doCalibration(DF, weights = NULL)

Arguments

DF

data frame, it must contain a column named 'Concentration' and a column named 'Response'

weights

default is NULL

Value

dataframe, the quantification result

Author(s)

Yonghui Dong

Examples

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)

[Package CCWeights version 0.1.6 Index]