Normalize Measurement Data Using Linear Regression
Source:R/normalise_drift_lm.R
normalise_drift_lm.Rd
This function normalizes measurement data by subtracting baseline values predicted from a linear regression of pre and post data.
Usage
normalise_drift_lm(
data,
data_pre,
data_post,
colname_time = "time",
colname_measure = "co2d_um_m"
)
Arguments
- data
A data frame containing the main dataset to be normalized
- data_pre
A data frame containing pre-experiment data used for baseline calculation
- data_post
A data frame containing post-experiment data used for baseline calculation
- colname_time
Character string specifying the column name for time measurements. Default is "time".
- colname_measure
Character string specifying the column name for the measurement. Default is "co2d_um_m".