get_calibration {STICr} | R Documentation |
This is a function to fit specific conductivity (SpC
) standards and uncalibrated conductivity measured by the STIC to a model object. This model can then be used to predict SpC values using apply_calibration. As of right now, only linear models are supported.
get_calibration(calibration_data)
calibration_data |
STIC calibration data frame with columns |
A fitted lm
model object relating SpC
to the uncalibrated conductivity values measured by the STIC
head(calibration_standard_data)
lm_calibration <- get_calibration(calibration_standard_data)
summary(lm_calibration)