R/generate_df_thresholds.R

Defines functions generate_df_thresholds

generate_df_thresholds <- function(data,
                                   additional_variables) {
  data %>%
    dplyr::group_by(.data$plate, !!!dplyr::syms(additional_variables)) %>%
    dplyr::summarise(EdU_threshold_average = mean(.data$EdU_threshold),
                     SABGal_threshold_average = mean(.data$SABGal_threshold)) %>%
    dplyr::ungroup()
}

Try the FAST.R package in your browser

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

FAST.R documentation built on June 22, 2024, 6:48 p.m.