I’m working on modeling a calibration process for spectroscopic measurements of turbidity in microtiter plates. The details aren’t super relevant, but we end up varying both the concentration of a standard, C_{std}, and the well volume, V_w (the volume of the solution loaded into each well) and measuring the absorbance of each well. The absorbance, A increases linearly with both variables under certain circumstances, but the relationship becomes non-linear at very high concentrations and for very long pathlengths (which are produced by very full wells, so a high well volume). So I end up with a polynomial regression with two predictors but significant correlation between the predictors. Here’s an example.
A = \beta_0 +\beta_1 V_w + \beta_2 V_w C_{std} + \beta_3 V_w^2 C_{std} + \beta_4 V_w C_{std}^2
The standard concentrations are prepared by serial dilution, so both the well volume and the standard concentrations have error introduced by the imperfections of the liquid handling robot we use. I have a decent generative model for the dilution error developed for a different purpose.
Long story short, I want to deal with both correlated predictors and measurement error.
I’ve read this part of the user guide, this blog post, and this part of the user guide, but I’m uncertain of the correct way to combine both the QR reparameterization and a model for measurement error into a single, correct program.
Are there any examples of this?
I’m also open to any suggestions for different approaches or suggestions. Polynomial regression is typical in the literature for these types of measurements, but I don’t know if it’s really the best approach.