R/background_subtract.R

Defines functions background_subtract

Documented in background_subtract

#' Background subtract plate data
#'
#' @param plate A plate object/tibble
#' @export
#'

background_subtract = function(plate) {
  plate |>
    dplyr::group_by(WELL) |>
    dplyr::mutate(OD = OD - min(OD))
}
jeffkimbrel/platereadR documentation built on Dec. 1, 2023, 1:54 a.m.