| calibrate | R Documentation |
A calibration experiment was conducted to develop an appropriate protocol for an experimental procedure. The study tested three preparation methods (Prep) and four initial concentrations (Conc), combined in a completely randomized design with two replicates per combination. Absorbance values were measured for each solution after application to an ELISA plate and are recorded in the dataset. The data comprise the measured absorbances (Absorbance), the preparation method, and the initial concentration for each unit. One observation (unit 9) was excluded from analysis due to suspected contamination and was marked as missing.
calibrate
A data frame with 4 variables: Unit, Prep, Conc, Absorbance.
Factor. Unique identifier for each observation or experimental unit.
Factor. Preparation method applied to the sample.
Factor. Initial concentration applied to the sample.
Numeric. Measured absorbance value for each sample unit (may contain missing values for invalid readings).
Welham, S. J., Gezan, S. A., Clark, S. J., and Mead, A. (2015) Statistical Methods in Biology: Design and analysis of experiments and regression
fit <- lm(log(Absorbance) ~ Prep * Conc,
data = calibrate |>
subset(!is.na(Absorbance)))
anova(fit)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.