Skip to content

Commit

Permalink
non dplyr pipe
Browse files Browse the repository at this point in the history
  • Loading branch information
harric17 committed Jul 10, 2024
1 parent 59883aa commit eafac28
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/utils.R
Original file line number Diff line number Diff line change
Expand Up @@ -517,13 +517,13 @@ report_to_xlsx = function(res,outfile,extrastring=""){
#'
#' # Only include selected checks
#' fileName <- file.path(tempdir(), "run_some_checks.R")
#' mymetads = sdtmchecksmeta %>%
#' mymetads = sdtmchecksmeta |>
#' dplyr::filter(category == "ALL" & priority == "High")
#' create_R_script(metads = mymetads, file = fileName)
#'
#' # Roche specific function calls
#' fileName <- file.path(tempdir(), "run_all_checks_roche.R")
#' mymetads = sdtmchecksmeta %>%
#' mymetads = sdtmchecksmeta |>
#' dplyr::mutate(fxn_in=fxn_in_roche)
#' create_R_script(metads = mymetads, file = fileName)
#'
Expand Down

0 comments on commit eafac28

Please sign in to comment.