powered by
CohortSizeDLT
CohortSizeDLT is the class for cohort size based on number of DLTs.
CohortSizeDLT(intervals, cohort_size).DefaultCohortSizeDLT()
.DefaultCohortSizeDLT()
(numeric) see slot definition.
numeric
intervals
(integer) a vector with the left bounds of the relevant DLT intervals.
integer
cohort_size
(integer) a vector with the cohort sizes corresponding to the elements of intervals.
# Rule for having cohort of size 1 until no DLT is observed and having cohort # of size 3 as soon as 1 DLT is observed. my_size <- CohortSizeDLT(intervals = c(0, 1), cohort_size = c(1, 3))
Run the code above in your browser using DataLab