minSize: "MIN" combination of cohort size rules

Description Usage Arguments Value Functions See Also Examples

Description

This function combines cohort size rules by taking the minimum of all sizes.

Usage

1
2
3
4
minSize(...)

## S4 method for signature 'CohortSize'
minSize(...)

Arguments

...

Objects of class CohortSize

Value

the combination as an object of class CohortSizeMin

Functions

See Also

maxSize

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
# Here is the rule for: 
#   having cohort of size 1 for doses <30
#   and having cohort of size 3 for doses >=30
mySize1 <- CohortSizeRange(intervals = c(0, 30),
                           cohortSize = c(1, 3))

# Here is the rule for: 
#   having cohort of size 1 until no DLT were observed
#   and having cohort of size 3 as soon as 1 DLT is observed
mySize2 <- CohortSizeDLT(DLTintervals=c(0, 1),
                         cohortSize=c(1, 3))

# This is combining the two rules above by taking the minimum of the sample sizes of
# the single rules
mySize <- minSize(mySize1, mySize2)

0liver0815/onc-crmpack-test documentation built on Feb. 19, 2022, 12:25 a.m.