R/match_orig.R

Defines functions match_orig

Documented in match_orig

#' Match original columns of the Site Tool
#'
#' @param df adjusted dataframe
#'
#' @export

match_orig <- function(df){

  df <- dplyr::select(df, -dplyr::matches("^[a-z].*", ignore.case = FALSE))

  return(df)
}
achafetz/adjuST documentation built on May 21, 2019, 11:29 a.m.