R/ezmmek_calc_std_lm_buffer.R

Defines functions ezmmek_calc_std_lm_buffer

Documented in ezmmek_calc_std_lm_buffer

#' ezmmek_calc_std_lm_homo
#'
#' @description Calculate linear model for standard curve in homogenate
#'
#' @param df Standard curve dataframe

########
### Make standard curve lm object for buffer
########

ezmmek_calc_std_lm_buffer <- function(df) {

  ### Fit linear model to buffer
  std_curve_lm_buffer <- lm(formula = buffer_signal ~ std_conc, data = df)

  std_curve_lm_buffer

}

Try the ezmmek package in your browser

Any scripts or data that you put into this service are public.

ezmmek documentation built on Aug. 28, 2020, 9:06 a.m.