R/check_ds_ex_after_discon.R
check_ds_ex_after_discon.Rd
Check for patients who had Start/End date of treatment after study discontinuation date in the DS and EX domains.
check_ds_ex_after_discon(DS, EX)
Boolean value if check failed or passed with 'msg' attribute if the test failed
DS <- data.frame(
USUBJID = c(rep(1,2), rep(2,2)),
DSSCAT= rep(c("STUDY COMPLETION/EARLY DISCONTINUATION", "ADVERSE EVENT"),2),
DSCAT = rep(c("DISPOSITION EVENT", "OTHER"),2),
DSSTDTC = c("2019-12-29", "2019-12-20", "2019-12-10", "2019-12-01"),
stringsAsFactors = FALSE
)
EX <- data.frame(
USUBJID = c(rep(1,2), rep(2,2)),
EXSTDTC = c("2019-12-20", "2019-12-28", "2019-12-26", "2019-12-27"),
EXENDTC = c("2019-12-10", "2019-12-23", "2019-12-30", "2019-12-27"),
EXTRT = c(rep("SOME DRUG", 2), rep("PLACEBO",2)),
EXDOSE = c(10,10,0,0),
stringsAsFactors = FALSE
)
check_ds_ex_after_discon(DS, EX)
#> [1] FALSE
#> attr(,"msg")
#> [1] "1 patient(s) with suspicious Start/End date of treatment occurring after study discontinuation. "
#> attr(,"data")
#> USUBJID max_EX_start max_EX_end DSSCAT
#> 1 2 2019-12-27 2019-12-30 STUDY COMPLETION/EARLY DISCONTINUATION
#> DSSTDTC
#> 1 2019-12-10
DS <- data.frame(
USUBJID = c(rep(1,2), rep(2,2)),
DSSCAT= rep(c("STUDY COMPLETION/EARLY DISCONTINUATION", "ADVERSE EVENT"),2),
DSCAT = rep(c("DISPOSITION EVENT", "OTHER"),2),
DSSTDTC = c("2019-12-29", "2019-12-20", "2019-12-10", "2019-12-01"),
stringsAsFactors = FALSE
)
EX <- data.frame(
USUBJID = c(rep(1,2), rep(2,2)),
EXSTDTC = c("2019-12-20", "2019-12-28", "2019-12-01", "2019-12-02"),
EXENDTC = c("2019-12-10", "2019-12-23", "2020", "2020"),
EXTRT = c(rep("SOME DRUG", 2), rep("PLACEBO",2)),
EXDOSE = c(10,10,0,0),
stringsAsFactors = FALSE
)
check_ds_ex_after_discon(DS, EX)
#> [1] FALSE
#> attr(,"msg")
#> [1] "1 patient(s) with suspicious Start/End date of treatment occurring after study discontinuation. "
#> attr(,"data")
#> USUBJID max_EX_start max_EX_end DSSCAT
#> 1 2 2019-12-02 2020 STUDY COMPLETION/EARLY DISCONTINUATION
#> DSSTDTC
#> 1 2019-12-10