&,StoppingAll,Stopping-method {crmPack}R Documentation

The method combining a stopping list and an atomic

Description

The method combining a stopping list and an atomic

Usage

## S4 method for signature 'StoppingAll,Stopping'
e1 & e2

Arguments

e1

StoppingAll object

e2

Stopping object

Value

The modified StoppingAll object

Examples


## Example of combining a list of stopping rules with an atomic stopping rule
## with an AND ('&') operator

myStopping1 <- StoppingMinCohorts(nCohorts=3)
myStopping2 <- StoppingTargetProb(target=c(0.2, 0.35),
                                  prob=0.5)

myStopping3 <- StoppingMinPatients(nPatients=20)

myStopping <- (myStopping1 | myStopping2 ) & myStopping3 





[Package crmPack version 1.0.5 Index]