I have measured photosynthetic rates at increasing light intensities to produce a PI curve for individual samples. I want to determine the asymptote of each curve by fitting a model to the measured responses for each sample. Below is a subset of the dataframe where O2_229, O2_35, etc. are individual samples.
A <- structure(list(LightIntensity = c(0, 112, 180, 272, 351, 430,
482, 541, 609), O2_229 = c(-0.44673102313958, 0.0205958989967557,
0.475351137678564, 0.640026082127451, 0.753504162148724,
0.804818094545302, 0.84640533715284, 0.864374368585184,
0.905709184251358), O2_35 = c(-0.302567249367208,
0.181032510348939, 0.376659543810537, 0.496560233238315,
0.540322247837853, 0.521608765794946, 0.528669387756481,
0.516887809093099, 0.514844068198885),
O2_230 = c(-0.542179874878379, 0.110661210104475,
0.331450283334161, 0.568762984387555, 0.752938666550757,
0.88143509214304, 0.945109493908027, 1.04005672006219,
1.10246315337637), O2_36 = c(-0.510663216304597,
0.509412237512078, 0.888867356301998, 1.18011410170533,
1.28838854392113, 1.21645059640005, 1.29459817366225,
1.02604605624222, 0.620845429599006),
O2_Blank = c(-0.0291830039468955, -0.010410546520055,
0.0414968296661793, 0.0398063330176891, -0.00945808361433628,
-0.039882102158536, -0.0447402714742525, -0.0283811043764061,
-0.0365212803552079)), row.names = c(NA, -9L), class =
"data.frame")
Here is what I have so far to compare models for a single sample (O2_229). I'm now trying to make sure I find the best model and determine the asymptote of each sample's curve.
A <- Data_9.20
linear.model <-lm(O2_229 ~ LightIntensity, A)
summary(linear.model)
plot(A$LightIntensity, A$O2_229)
abline(lm(O2_229 ~ LightIntensity, A))
light2 <- A$LightIntensity^2
quadratic.model <-lm(O2_229 ~ LightIntensity + light2, A)
summary(quadratic.model)
lightvalues <- seq(0, 700, 100)
predictedcounts <-
predict(quadratic.model,list(LightIntensity=lightvalues, light2 =
lightvalues^2))
plot(A$LightIntensity, A$O2_229)
lines(lightvalues, predictedcounts)
I see that you are using a quadratic equation to model the data, which does not have an explicit asymptote. I found that a Standard Geometric With Offset equation "y = a * pow(x, (b*x)) + Offset" appears to be a good model for the data, with the advantage that the "Offset" parameter is the explicit fitted asymptote. Here are my fitted values for the various data sets (except O2_Blank) and model plots. I note that data set 02_36 seems to curve down rather than approach an asymptote.