Given a set of models (with full parameter values and model probabilities) the optDesign function calculates the optimal design for estimating the dose-response model parameters (D-optimal) or the design for estimating the target dose (TD-optimal design) (see Dette, Bretz, Pepelyshev and Pinheiro (2008)), or a mixture of these two criteria. The design can be plotted (together with the candidate models) using plot.design. calcCrit calculates the design criterion for a discrete set of design(s). rndDesign provides efficient rounding for the calculated continous design to a finite sample size.
optDesign(models, probs, doses,
designCrit = c("Dopt", "TD", "Dopt&TD", "userCrit"),
Delta, standDopt = TRUE, weights,
nold = rep(0, length(doses)), n,
control=list(),
optimizer = c("solnp", "Nelder-Mead", "nlminb", "exact"),
lowbnd = rep(0, length(doses)), uppbnd = rep(1, length(doses)),
userCrit, ...)# S3 method for DRdesign
plot(x, models, lwdDes = 10, colDes = rgb(0,0,0,0.3), ...)
calcCrit(design, models, probs, doses,
designCrit = c("Dopt", "TD", "Dopt&TD"),
Delta, standDopt = TRUE, weights,
nold = rep(0, length(doses)), n)
rndDesign(design, n, eps = 0.0001)
An object of class c(Mods, fullMod), see the
Mods
function for details. When an TD optimal design
should be calculated, the TD needs to exist for all models. If a
D-optimal design should be calculated, you need at least as many
doses as there are parameters in the specified models.
Vector of model probabilities for the models specified in models, assumed in the same order as specified in models
Optional argument. If this argument is missing the doses attribute in the c(Mods, fullMod) object specified in models is used.
Determines which type of design to calculate. "TD&Dopt" uses both optimality criteria with equal weight.
Target effect needed for calculating "TD" and "TD&Dopt" type designs.
Logical determining, whether the D-optimality criterion (specifically the log-determinant) should be standardized by the number of parameters in the model or not (only of interest if type = "Dopt" or type = "TD&Dopt"). This is of interest, when there is more than one model class in the candidate model set (traditionally standardization this is done in the optimal design literature).
Vector of weights associated with the response at the doses. Needs to be of the same length as the doses. This can be used to calculate designs for heteroscedastic or for generalized linear model situations.
When calculating an optimal design at an interim analysis, nold specifies the vector of sample sizes already allocated to the different doses, and n gives sample size for the next cohort.
For optimizer = "exact" one always needs to specify the total sample size via n.
List containing control parameters passed down to numerical
optimization algorithms (optim
, nlminb
or
solnp function).
For type = "exact" this should be a list with possible entries maxvls1 and maxvls2, determining the maximum number of designs allowed for passing to the criterion function (default maxvls2=1e5) and for creating the initial unrestricted matrix of designs (default maxvls1=1e6). In addition there can be an entry groupSize in case the patients are allocated a minimum group size is required.
Algorithm used for calculating the optimal design. Options
"Nelder-Mead" and "nlminb" use the optim
and
nlminb
function and use a trigonometric transformation
to turn the constrained optimization problem into an unconstrained one
(see Atkinson, Donev and Tobias, 2007, pages 130,131).
Option "solnp" uses the solnp function from the Rsolnp package, which implements an optimizer for non-linear optimization under general constraints.
Option "exact" tries all given combinations of n patients to the given dose groups (subject to the bounds specified via lowbnd and uppbnd) and reports the best design. When patients are only allowed to be allocated in groups of a certain groupSize, this can be adjusted via the control argument. n/groupSize and length(doses) should be rather small for this approach to be feasible.
When the number of doses is small (<8) usually "Nelder-Mead" and "nlminb" are best suited ("nlminb" is usually a bit faster but less stable than "Nelder-Mead"). For a larger number of doses "solnp" is the most reliable option (but also slowest) ("Nelder-Mead" and "nlminb" often fail). When the sample size is small "exact" provides the optimal solution rather quickly.
Vectors of the same length as dose vector specifying upper and lower limits for the allocation weights. This option is only available when using the "solnp" and "exact" optimizers.
User defined design criterion, should be a function that given a vector of allocation weights and the doses returns the criterion function. When specified models does not need to be handed over.
The first argument of userCrit should be the vector of design weights, while the second argument should be the doses argument (see example below). Additional arguments to userCrit can be passed via ...
For function optDesign these are additional arguments passed to
userCrit.
For function plot.design these are additional parameters passed
to plot.Mods
.
Argument for rndDesign and calcCrit functions: Numeric
vector (or matrix) of allocation weights for the different doses. The
rows of the matrices need to sum to 1. Alternatively also an object of
class "DRdesign" can be used for rndDesign. Note that there
should be at least as many design points available as there are
parameters in the dose-response models selected in models
(otherwise the code returns an NA).
Argument for rndDesign function: Value under which elements of w will be regarded as 0.
Object of class DRdesign (for plot.design)
Line width and color of the lines plotted for the design (in plot.design)
Bjoern Bornkamp
Let
For designCrit = "Dopt" the code minimizes the design criterion
For designCrit = "TD" the code minimizes the design criterion
For designCrit = "Dopt&TD" the code minimizes the design criterion
Again, for standDopt = FALSE the
For details on the rndDesign function, see Pukelsheim (1993), Chapter 12.
Atkinson, A.C., Donev, A.N. and Tobias, R.D. (2007). Optimum Experimental Designs, with SAS, Oxford University Press
Dette, H., Bretz, F., Pepelyshev, A. and Pinheiro, J. C. (2008). Optimal Designs for Dose Finding Studies, Journal of the American Statisical Association, 103, 1225--1237
Pinheiro, J.C., Bornkamp, B. (2017) Designing Phase II Dose-Finding Studies: Sample Size, Doses and Dose Allocation Weights, in O'Quigley, J., Iasonos, A. and Bornkamp, B. (eds) Handbook of methods for designing, monitoring, and analyzing dose-finding trials, CRC press
Pukelsheim, F. (1993). Optimal Design of Experiments, Wiley
Mods
, drmodels
## calculate designs for Emax model
doses <- c(0, 10, 100)
emodel <- Mods(emax = 15, doses=doses, placEff = 0, maxEff = 1)
optDesign(emodel, probs = 1)
## TD-optimal design
optDesign(emodel, probs = 1, designCrit = "TD", Delta=0.5)
## 50-50 mixture of Dopt and TD
optDesign(emodel, probs = 1, designCrit = "Dopt&TD", Delta=0.5)
## use dose levels different from the ones specified in emodel object
des <- optDesign(emodel, probs = 1, doses = c(0, 5, 20, 100))
## plot models overlaid by design
plot(des, emodel)
## round des to a sample size of exactly 90 patients
rndDesign(des, n=90) ## using the round function would lead to 91 patients
## illustrating different optimizers (see Note above for more comparison)
optDesign(emodel, probs=1, optimizer="Nelder-Mead")
optDesign(emodel, probs=1, optimizer="nlminb")
## optimizer solnp (the default) can deal with lower and upper bounds:
optDesign(emodel, probs=1, designCrit = "TD", Delta=0.5,
optimizer="solnp", lowbnd = rep(0.2,3))
## exact design using enumeration of all possibilites
optDesign(emodel, probs=1, optimizer="exact", n = 30)
## also allows to fix minimum groupSize
optDesign(emodel, probs=1, designCrit = "TD", Delta=0.5,
optimizer="exact", n = 30, control = list(groupSize=5))
## optimal design at interim analysis
## assume there are already 10 patients on each dose and there are 30
## left to randomize, this calculates the optimal increment design
optDesign(emodel, 1, designCrit = "TD", Delta=0.5,
nold = c(10, 10, 10), n=30)
## use a larger candidate model set
doses <- c(0, 10, 25, 50, 100, 150)
fmods <- Mods(linear = NULL, emax = 25, exponential = 85,
linlog = NULL, logistic = c(50, 10.8811),
doses = doses, addArgs=list(off=1),
placEff=0, maxEff=0.4)
probs <- rep(1/5, 5) # assume uniform prior
desDopt <- optDesign(fmods, probs, optimizer = "nlminb")
desTD <- optDesign(fmods, probs, designCrit = "TD", Delta = 0.2,
optimizer = "nlminb")
desMix <- optDesign(fmods, probs, designCrit = "Dopt&TD", Delta = 0.2)
## plot design and truth
plot(desMix, fmods)
## illustrate calcCrit function
## calculate optimal design for beta model
doses <- c(0, 0.49, 25.2, 108.07, 150)
models <- Mods(betaMod = c(0.33, 2.31), doses=doses,
addArgs=list(scal=200),
placEff=0, maxEff=0.4)
probs <- 1
deswgts <- optDesign(models, probs, designCrit = "Dopt",
control=list(maxit=1000))
## now compare this design to equal allocations on
## 0, 10, 25, 50, 100, 150
doses2 <- c(0, 10, 25, 50, 100, 150)
design2 <- c(1/6, 1/6, 1/6, 1/6, 1/6, 1/6)
crit2 <- calcCrit(design2, models, probs, doses2, designCrit = "Dopt")
## ratio of determinants (returned criterion value is on log scale)
exp(deswgts$crit-crit2)
## example for calculating an optimal design for logistic regression
doses <- c(0, 0.35, 0.5, 0.65, 1)
fMod <- Mods(linear = NULL, doses=doses, placEff=-5, maxEff = 10)
## now calculate weights to use in the covariance matrix
mu <- as.numeric(getResp(fMod, doses=doses))
mu <- 1/(1+exp(-mu))
weights <- mu*(1-mu)
des <- optDesign(fMod, 1, doses, weights = weights)
## one can also specify a user defined criterion function
## here D-optimality for cubic polynomial
CubeCrit <- function(w, doses){
X <- cbind(1, doses, doses^2, doses^3)
CVinv <- crossprod(X*w)
-log(det(CVinv))
}
optDesign(doses = c(0,0.05,0.2,0.6,1),
designCrit = "userCrit", userCrit = CubeCrit,
optimizer = "nlminb")
Run the code above in your browser using DataLab