StoppingTDCIRatio is the class for testing a stopping rule that is based
on a target ratio of the 95% credibility interval. Specifically, this is the
ratio of the upper to the lower bound of the 95% credibility interval's
estimate of the target dose (i.e. a dose that corresponds to a given target
probability of the occurrence of a DLT prob_target).
# Define the target stopping ratio (5) and the target probability of a DLT to# be used (0.3).my_stopping <- StoppingTDCIRatio(
target_ratio = 5,
prob_target = 0.3)