R/right_trim.R

Defines functions right_trim

Documented in right_trim

#' Right Trim
#'
#' @param plate A plate object/tibble
#' @param timepoint Trim time points after this
#' @export
#'

right_trim = function(plate, timepoint) {
  plate |>
    dplyr::filter(HOURS < timepoint)
}
jeffkimbrel/platereadR documentation built on Dec. 1, 2023, 1:54 a.m.