Become an expert in R — Interactive courses, Cheat Sheets, certificates and more!
Get Started for Free

StoppingAny-class

Stop based on fullfillment of any stopping rule


Description

This class can be used to combine multiple stopping rules with an OR operator.

Details

stopList contains all stopping rules, which are again objects of class Stopping. Any of these rules must be fulfilled in order that the result of this rule is to stop.

Slots

stopList

list of stopping rules

Examples

# Define some stopping rules
myStopping1 <- StoppingMinCohorts(nCohorts=3)
myStopping2 <- StoppingTargetProb(target=c(0.2, 0.35),
                                  prob=0.5)
myStopping3 <- StoppingMinPatients(nPatients=20)

# Create a list of stopping rules (of class 'StoppingAny') which will then be
# summarized with the 'any' function, meaning that the study would be stopped if
# 'any' of the single stopping rules is TRUE.
mystopping <- StoppingAny(stopList=c(myStopping1,myStopping2,myStopping3))

crmPack

Object-Oriented Implementation of CRM Designs

v1.0.0
GPL (>= 2)
Authors
Daniel Sabanes Bove [aut], Wai Yin Yeung [aut], Giuseppe Palermo [aut, cre], Thomas Jaki [aut]
Initial release

We don't support your browser anymore

Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.