I'm measuring many different chemical compounds, each of which has a different calibration curve, using a single instrument. I'd like to apply the correct calibration curve, based on the name of the compound, to the raw data to the raw data from the instrument. So, I start with a multiple calibration curves and a data frame of raw data:
#generate the calibration curves
x <- 1:10
calib.data.1 <- x+runif(10)
lm.1 <- lm(calib.data.1~x)
calib.data.2 <- 2*x+runif(10)
lm.2 <- lm(calib.data.2~x)
The raw data look like this:
compound <- factor(c("cpd1", "cpd2"))
values <- runif(2)
raw <- data.frame(compound, values)
It seems like the elegant way to choose the correct calibration curve would involve ddply or similar. However I can't figure out how to do this without writing a function along these lines:
choose.calib <- function(raw, cpd)
if(cpd=="cpd1"){
calib=coef(lm.1)[1]+val*coef(lm.2)[2]
}else{
if(cpd=="cpd2"){
calib=coef(lm.2)[1]+val*coef(lm.2)[2]
}else{
warning("no calib curve for compound")}}
}
Then I would do something like
cal<-ddply(raw, .(compound), choose.calib)
(which doesn't work anyway due to my failure to understand if-else; but I think I can work that out on my own)
Is there a more vectorized way to do this?
raw <- data.frame(compound, values), no? – JD Long Nov 2 '11 at 14:25caliboutput usecoef(lm.1)[2]rather thancoef(lm.2)[2]? – Iterator Nov 3 '11 at 17:20