| NextBestEWOC-class | R Documentation |
NextBestEWOCNextBestEWOC is the class implementing Escalation With Overdose Control
(EWOC). It recommends the highest possible dose subject to a probabilistic
constraint that the posterior probability of overdosing does not exceed
max_overdose_prob. Overdosing is defined as the model-based toxicity
probability lying inside the interval given by overdose.
NextBestEWOC(target, overdose, max_overdose_prob)
.DefaultNextBestEWOC()
target |
( |
overdose |
( |
max_overdose_prob |
( |
target(proportion)
target toxicity probability to be
achieved, below overdose[1]; only used for simulation reporting purposes.
overdose(numeric)
the (exclusive) lower and (inclusive) upper boundaries of the
toxicity probability interval considered an overdose region. The prototype
uses c(0.35, 1) meaning probabilities > 0.35 are treated as overly toxic.
max_overdose_prob(proportion)
maximum acceptable posterior
probability that the next recommended dose is in the overdose interval.
Typically, end users will not use the .DefaultNextBestEWOC() function.
NextBest, other next-best classes listed in its documentation.
# Example: Define EWOC next best dose rule.
# Target toxicity probability is 0.30. Overdose region is any probability > 0.35.
# We restrict posterior probability of recommending an overdosing dose to <= 0.25.
next_best_ewoc <- NextBestEWOC(
target = 0.30,
overdose = c(0.35, 1),
max_overdose_prob = 0.25
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.