Description Usage Arguments Value Examples
The method combining an atomic and a stopping list
1 2 | ## S4 method for signature 'Stopping,StoppingAny'
e1 | e2
|
e1 |
|
e2 |
|
The modified StoppingAny
object
1 2 3 4 5 6 7 8 9 10 | ## Example of combining an atomic stopping rule with a list of stopping rules
## with an OR ('|') operator
myStopping1 <- StoppingMinCohorts(nCohorts=3)
myStopping2 <- StoppingTargetProb(target=c(0.2, 0.35),
prob=0.5)
myStopping3 <- StoppingMinPatients(nPatients=20)
myStopping <- myStopping3 | (myStopping1 & myStopping2 )
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.