next_Ivanova_continuous {UnifiedDoseFinding}R Documentation

Determine the dose for the next cohort of new patients using Inanova design

Description

Determine the dose for the next cohort of new patients for single-agent trials that aim to find a MTD

Usage

next_Ivanova_continuous(target, eps, c_resp, n, d)

Arguments

target

the target toxicity score

eps

the decision criterion

c_resp

the list object. Each element contains continuous value for each measurement at the certain dose level

n

the number of patients enrolled at each dose level

d

the current dose level

Value

next_Ivanova_continuous() returns recommended dose level for the next cohort as a numeric value

Author(s)

Chia-Wei Hsu, Haitao Pan, Rongji Mu

References

Ivanova, Anastasia, and Se Hee Kim. "Dose finding for continuous and ordinal outcomes with a monotone objective function: a unified approach." Biometrics 65, no. 1 (2009): 307-315.

Examples

target <- 1.47
eps <- 1
c_resp <- list(c(0, 0.05475884, 0.12446843, 0.10131912),
               c(0, 0.4716962, 0.2792428, 0.3296575),
               c(0, 0.3931168, 1.6116607, 0.1642561),
               c(0, 0.9410027, 1.6021326, 1.6115235,
                 1.1735981, 2.5575655, 1.6513679, 1.4269044,
                 0.8983843, 2.2209587),
               0,
               0)
n <- c(3, 3, 3, 9, 0, 0)
d <- 4
next_Ivanova_continuous(target = target, eps = eps, c_resp = c_resp,
                        n = n, d = d)

[Package UnifiedDoseFinding version 0.1.10 Index]