Skip to content

Commit

Permalink
update example as pointed out by lint
Browse files Browse the repository at this point in the history
  • Loading branch information
donyunardi committed Sep 20, 2022
1 parent 6cb7bf4 commit f75feb7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions R/tm_g_lineplot.R
Original file line number Diff line number Diff line change
Expand Up @@ -214,11 +214,11 @@ template_g_lineplot <- function(dataname = "ANL",
#'
#' app <- init(
#' data = cdisc_data(
#' cdisc_dataset("ADSL", ADSL, code = 'ADSL <- synthetic_cdisc_data("latest")$adsl'),
#' cdisc_dataset("ADSL", ADSL, code = "ADSL <- synthetic_cdisc_data('latest')$adsl"),
#' cdisc_dataset(
#' "ADLB", ADLB,
#' code = 'ADLB <- synthetic_cdisc_data("latest")$adlb
#' ADLB <- dplyr::mutate(ADLB, AVISIT == forcats::fct_reorder(AVISIT, AVISITN, min))'
#' code = "ADLB <- synthetic_cdisc_data('latest')$adlb
#' ADLB <- dplyr::mutate(ADLB, AVISIT == forcats::fct_reorder(AVISIT, AVISITN, min))"
#' ),
#' check = TRUE
#' ),
Expand Down
4 changes: 2 additions & 2 deletions R/tm_t_summary_by.R
Original file line number Diff line number Diff line change
Expand Up @@ -336,9 +336,9 @@ template_summary_by <- function(parentname,
#' data = cdisc_data(
#' cdisc_dataset("ADSL", adsl),
#' cdisc_dataset("ADLB", adlb),
#' code = 'synthetic_cdisc_data_latest <- synthetic_cdisc_data("latest")
#' code = "synthetic_cdisc_data_latest <- synthetic_cdisc_data('latest')
#' adsl <- synthetic_cdisc_data_latest$adsl
#' adlb <- synthetic_cdisc_data_latest$adlb'
#' adlb <- synthetic_cdisc_data_latest$adlb"
#' ),
#' modules = modules(
#' tm_t_summary_by(
Expand Down

0 comments on commit f75feb7

Please sign in to comment.