Predicate to Check if Split Should be Excluded
Examples
do_exclude_split(
exclude_levels = list(AVISIT = "Baseline"),
.spl_context = data.frame(
split = c("AVISIT", "ARM"),
value = c("Week 4", "Placebo")
)
)
#> [1] FALSE
do_exclude_split(
exclude_levels = list(AVISIT = "Baseline"),
.spl_context = data.frame(
split = c("AVISIT", "ARM"),
value = c("Baseline", "Placebo")
)
)
#> [1] TRUE
