R/ezmmek_calc_std_lm_homo_buf.R

Defines functions ezmmek_calc_std_lm_homo_buffer

Documented in ezmmek_calc_std_lm_homo_buffer

#' ezmmek_calc_std_lm_homo_buffer
#'
#' @description Calculate linear model for standard curve in homogenate-buffer solution
#'
#' @param df Standard curve dataframe

########
### Make standard curve lm object for homogenate-buffer solution
########

ezmmek_calc_std_lm_homo_buffer <- function(df) {

  ### Fit linear model to homogenate
  std_curve_lm_homo_buffer <- lm(formula = homo_buffer_signal ~ std_conc, data = df)

  std_curve_lm_homo_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.