Learn R Programming

CCWeights (version 0.1.6)

doCalibration: 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

Examples

Run this code
# NOT RUN {
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)
# }

Run the code above in your browser using DataLab