R/ezmmek_calc_std_lm_homo.R

Defines functions ezmmek_calc_std_lm_homo

Documented in ezmmek_calc_std_lm_homo

#' 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 homogenate
########

ezmmek_calc_std_lm_homo <- function(df) {

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

  std_curve_lm_homo
}

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.