continue.Rd
Should this dose-finding experiment continue? Or have circumstances prevailed
that dictate this trial should stop? This method is critical to the automatic
calculation of statistical operating characteristics and dose-pathways. You
add stopping behaviours to designs using calls like stop_at_n
and stop_when_too_toxic
.
continue(x, ...)
x | Object of type |
---|---|
... | Extra args are passed onwards. |
logical
skeleton <- c(0.05, 0.1, 0.25, 0.4, 0.6) target <- 0.25 model1 <- get_dfcrm(skeleton = skeleton, target = target) fit1 <- model1 %>% fit('1NNN 2NTN') fit1 %>% continue()#> [1] TRUEmodel2 <- get_dfcrm(skeleton = skeleton, target = target) %>% stop_at_n(n = 6) fit2 <- model2 %>% fit('1NNN 2NTN') fit2 %>% continue()#> [1] FALSE