Skip to content

Commit

Permalink
fixing join_key issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
kartikeyakirar committed Nov 8, 2023
1 parent 3a11031 commit 07fd195
Show file tree
Hide file tree
Showing 7 changed files with 31 additions and 19 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ Suggests:
knitr,
lubridate,
nestcolor (>= 0.1.0),
teal.data (>= 0.3.0),
teal.data (>= 0.3.0.9008),
testthat (>= 3.0)
VignetteBuilder:
knitr
Expand Down
6 changes: 5 additions & 1 deletion R/tm_t_mult_events.R
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,11 @@ template_mult_events <- function(dataname,
#' ADSL <- tmc_ex_adsl
#' ADCM <- tmc_ex_adcm
#' ",
#' join_keys = join_keys #TODO join_key
#' join_keys = join_keys(
#' join_key("ADSL", keys = get_cdisc_keys("ADSL")),
#' join_key("ADCM", keys = adcm_keys),
#' join_key("ADCM", "ADSL", keys = c("USUBJID", "STUDYID"))
#' )
#' ),
#' modules = modules(
#' tm_t_mult_events(
Expand Down
6 changes: 5 additions & 1 deletion R/tm_t_pp_prior_medication.R
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,11 @@ template_prior_medication <- function(dataname = "ANL",
#' ADCM$CMASTDTM <- ADCM$ASTDTM
#' ADCM$CMAENDTM <- ADCM$AENDTM
#' ",
#' join_keys = join_keys #TODO Join- key
#' join_keys = join_keys(
#' join_key("ADSL", keys = get_cdisc_keys("ADSL")),
#' join_key("ADCM", keys = adcm_keys),
#' join_key("ADCM", "ADSL", keys = c("USUBJID", "STUDYID"))
#' )
#' ),
#' modules = modules(
#' tm_t_pp_prior_medication(
Expand Down
12 changes: 5 additions & 7 deletions man/template_g_lineplot.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 5 additions & 7 deletions man/tm_g_lineplot.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion man/tm_t_mult_events.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion man/tm_t_pp_prior_medication.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 07fd195

Please sign in to comment.