Nothing
#' Compute operating characteristics using PRINTE
#'
#' `oc_pite()` uses the PRINTE design to compute operating charateristics of a user-specificed trial scenario.
#' This design maps toxicity and efficacy intervals onto a decision table, forming 16 equal-area regions.
#' @param ndose Integer. Number of dose levels. (**Required**)
#' @param target_t Numeric. Target toxicity probability. (**Required**)
#' @param target_e Numeric. Target efficacy probability. (**Required**)
#' @param lower_e Numeric. Minimum acceptable efficacy probability. (**Required**)
#' @param ncohort Integer. Number of cohorts. (Default is `10`)
#' @param cohortsize Integer. Size of a cohort. (Default is `3`)
#' @param startdose Integer. Starting dose level. (Default is `1`)
#' @param OBD Integer. True index of the Optimal Biological Dose (OBD) for the trial scenario. (Default is 0)
#' - If set to `0`: Random OBD will be selected.
#' - Other: Treat this argument as the true OBD.
#' @param eps1 Numerical. Width of the subrectangle. (Default is '0.05')
#' @param eps2 Numerical. Width of the subreactangle. (Default is '0.05')
#' @param psafe Numeric. Early stopping cutoff for toxicity. (Default is `0.95`)
#' @param pfutility Numeric. Early stopping cutoff for efficacy. (Default is `0.95`)
#' @param ntrial Integer. Number of random trial replications. (Default is `10000`)
#' @param utilitytype Integer. Type of utility structure. (Default is `1`)
#' - If set to `1`: Use preset weights (w11 = 0.6, w00 = 0.4)
#' - If set to `2`: Use (w11 = 1, w00 = 0)
#' - Other: Use user-specified values from `u1` and `u2`.
#' @param u1 Numeric. Utility parameter w_11. (0-100)
#' @param u2 Numeric. Utility parameter w_00. (0-100)
#' @param prob Fixed probability vectors. If not specified, a random scenario is used by default.
#' Use this parameter to provide fixed probability vectors as a list with the following named elements:
#' - `pE`: Numeric vector of efficacy probabilities for each dose level.
#' - `pT`: Numeric vector of toxicity probabilities for each dose level.
#' - `obd`: Integer indicating the index of the true Optimal Biological Dose (OBD).
#' - `mtd`: Integer indicating the index of the true Maximum Tolerated Dose (MTD).
#'
#' For example:
#' ```r
#' prob <- list(
#' pE = c(0.4, 0.5, 0.6, 0.6, 0.6),
#' pT = c(0.1, 0.2, 0.3, 0.4, 0.4),
#' obd = 3,
#' mtd = 2
#' )
#' ```
#' @return A list containing operating characteristics such as:
#' \describe{
#' \item{bd.sel}{OBD selection percentage}
#' \item{od.sel}{Favorable dose selection percentage}
#' \item{bd.pts}{Average percentage of patients at the OBD }
#' \item{od.pts}{Average percentage of patients at the favorable doses}
#' \item{earlystop}{Percentage of early stopped trials}
#' \item{overdose}{Overdose patients percentage }
#' \item{poorall}{Poor allocation percentage}
#' \item{ov.sel}{Overdose selection percentage}
#' }
#' @examples
#' oc_pite(
#' ndose = 5,
#' target_t = 0.3,
#' target_e = 0.35,
#' lower_e = 0.4,
#' ntrial = 10,
#' )
#' @export
oc_pite <- function(ndose, target_t, target_e, lower_e, ncohort = 10,
cohortsize = 3, startdose = 1, OBD = 0,
eps1 = 0.05, eps2 = 0.05,
psafe = 0.95, pfutility = 0.95, ntrial = 10000,
utilitytype = 1, u1, u2, prob = NULL) {
if (utilitytype == 1) {
u1 <- 60
u2 <- 40
} else if (utilitytype == 2) {
u1 <- 100
u2 <- 0
}
qE <- lower_e
parabeta <- c(1, 1)
up.int.bound.tox <- seq(target_t + eps2, 1, min(eps1 + eps2, 1 - target_t - eps2))
mid.int.bound.tox <- c(target_t - eps1, target_t + eps2)
low.int.bound.tox <- sort(-seq(-target_t + eps1, 0, min(eps1 + eps2, target_t - eps1)))
tbound <- unique(c(0, low.int.bound.tox, up.int.bound.tox, 1))
up.int.bound.eff <- seq(target_e, 1, 0.2)
low.int.bound.eff <- sort(-seq(-target_e, 0, 0.2))
ebound <- c(low.int.bound.eff[-length(low.int.bound.eff)], up.int.bound.eff)
maptoINT <- matrix(
c(
rep(c(
rep("LL", length(low.int.bound.tox)), "EL",
rep("UL", length(up.int.bound.tox))
), 2),
rep(c(
rep("LU", length(low.int.bound.tox)), "EU",
rep("UU", length(up.int.bound.tox))
), 3)
),
ncol = 5, byrow = FALSE
)
csize <- cohortsize
sampsize <- csize * ncohort
targetT <- target_t
targetE <- target_e
ntrial <- ntrial
npts <- ncohort * cohortsize
bd.sel <- 0
bd.pts <- 0
od.sel <- 0
od.pts <- 0
ov.sel <- 0
ntox <- 0
neff <- 0
poorall <- 0
incoherent <- 0
overdose <- 0
dselect <- rep(0, ntrial)
for (simul in 1:ntrial) {
if (!is.null(prob)) {
probs <- prob
} else {
probs <- simprob(ndose, lower_e, target_t, u1, u2, randomtype, OBD=OBD)
}
jj <- probs$pE
kk <- probs$pT
pE.true <- jj
pT.true <- kk
u.true <- (u1 * pE.true + (1 - pT.true) * u2)
bd <- probs$obd
mtd <- probs$mtd
toxtrue <- pT.true
efftrue <- pE.true
x <- rep(0, ndose) # toxicity number for each dose
y <- rep(0, ndose) # efficacy number for each dose
n <- rep(0, ndose) # patient number for each dose
d <- startdose # current dose is the lowest dose
st <- 0 # stop sign
currentsize <- 0
dtox <- rep(0, ndose)
dfut <- rep(0, ndose)
earlystop <- 0
while (st == 0) {
xx <- sum(runif(cohortsize) < toxtrue[d]) # generate tox outcome at current dose
yy <- sum(runif(cohortsize) < efftrue[d])
x[d] <- x[d] + xx # total tox outcome
y[d] <- y[d] + yy # total eff outcome
n[d] <- n[d] + csize # total sample size used
currentsize <- currentsize + csize
if (pbeta(target_t, parabeta[1] + x[d], parabeta[2] + n[d] - x[d]) < 1 - psafe) {
dtox[d:ndose] <- 1
}
if (pbeta(qE, parabeta[1] + y[d], parabeta[2] + n[d] - y[d]) > pfutility) {
dfut[d] <- 2
}
upm <- upmgen(tbound, ebound, parabeta, n[d], x[d], y[d]) # compute JUPM
index <- maptoINT[which(upm == max(upm), arr.ind = T)] # map to interval
dec <- maptoDEC(index) # get decision
if (currentsize >= sampsize) {
st <- 1
} else {
# if all doses are either too toxic or of no efficacy (couldn't find a dose for the next corhort)
if (length(which(dfut + dtox == 0)) == 0) {
st <- 1
# print("stop since all doses are either too toxic or of no efficacy")
earlystop <- 1
} else {
# if current dose is too toxic, de-escalate
if (dtox[d] == 1) {
d <- max(which(dfut[1:(d - 1)] == 0))
} # if current dose is of no efficacy
else if (dfut[d] == 2) {
if (dec == "E") {
# if there is a valid dose above current dose, escalate by minimum dose size
if (d != ndose && length(which(dtox[(d + 1):ndose] + dfut[(d + 1):ndose] == 0)) != 0) {
d <- min(which(dtox[(d + 1):ndose] + dfut[(d + 1):ndose] == 0)) + d
} # if there is no dose above current dose, de-escalate to the next available dose
else {
d <- max(which(dtox[1:(d - 1)] + dfut[1:(d - 1)] == 0))
}
} else if (dec == "D") {
# if there is a valid dose below current dose, de-escalate by minimum dose size
if (d != 1 && length(which(dtox[1:(d - 1)] + dfut[1:(d - 1)] == 0) != 0)) {
d <- max(which(dtox[1:(d - 1)] + dfut[1:(d - 1)] == 0))
} else {
st <- 1 # if there is no valid dose below current dose
# print("current dose not toxic but no efficacy, decision D")
earlystop <- 1
}
} else {
# when dec = "S", if there are valid doses above the current dose, escalate
# if not, de-escalate, if neither, stop
if (sum(which(dfut + dtox == 0) < d) != 0) {
d <- max(which(dtox[1:(d - 1)] + dfut[1:(d - 1)] == 0))
} else {
st <- 1
# print("current dose not toxic but no efficacy, decision S")
earlystop <- 1
}
}
}
# Below is the condition where the current dose is efficacious and not too toxic
else {
if (dec == "E") {
# if there is a higher dose available, escalate
if (d != ndose && length(which(dtox[(d + 1):ndose] + dfut[(d + 1):ndose] == 0)) != 0) {
d <- min(which(dtox[(d + 1):ndose] + dfut[(d + 1):ndose] == 0)) + d
} else {
d <- d
}
} else if (dec == "D") {
# if there is a lower dose available, de-escalate
if (d != 1 && (length(which(dtox[1:(d - 1)] + dfut[1:(d - 1)] == 0) != 0))) {
d <- max(which(dtox[1:(d - 1)] + dfut[1:(d - 1)] == 0))
} # else?
else {
d <- d
}
} else if (dec == "S") {
d <- d
}
}
}
}
# print(paste("next dose", d))
# cat("\n",file=file1,append=T)
}
trial <- simul
ntrial <- ntrial
if (earlystop == 0) {
yT_c <- x
yE_c <- y
elimi <- dtox
elimiE <- ifelse(dfut == 2, 1, 0)
pT_est <- (yT_c + 0.05) / (n + 0.1)
pE_est <- (yE_c + 0.05) / (n + 0.1)
pT_est <- pava(pT_est, n + 0.1) + 0.001 * seq(1, ndose)
pE_est <- peestimate(yE_c, n)
u <- u1 * pE_est + (1 - pT_est) * u2
u[elimi == 1] <- -100
u[elimiE == 1] <- -100
u[n == 0] <- -100
# u[pT_est>(targetT+0.1)]<--100
d_mtd <- which.min(abs(pT_est - targetT))
d_opT_est <- which.max(u[1:d_mtd])
dselect[trial] <- d_opT_est
if (d_opT_est == bd) {
bd.sel <- bd.sel + 1 / ntrial * 100
}
if (abs(u.true[d_opT_est] - u.true[bd]) <= (0.05 * u.true[bd]) & d_opT_est <= mtd) {
od.sel <- od.sel + 1 / ntrial * 100
}
if (pT.true[d_opT_est] > (targetT + 0.1)) {
ov.sel <- ov.sel + 1 / ntrial * 100
}
dselect[trial] <- d_opT_est
# sel[dselect[trial]]=sel[dselect[trial]]+1/ntrial*100
# if (d_opT_est==2) {print(yT_c);print(yE_c);print(n)}
} else {
dselect[trial] <- 99
}
earlystop <- sum(dselect == 99) / ntrial * 100
if (n[bd] < (npts / ndose)) {
poorall <- poorall + 1 / ntrial * 100
}
overdose <- overdose + sum(n[pT.true > (targetT + 0.1)]) / ntrial / npts * 100
bd.pts <- bd.pts + n[bd] / ntrial / npts * 100
od.pts <- od.pts + sum(n[abs(u.true[1:mtd] - u.true[bd]) <= (0.05 * u.true[bd])]) / ntrial / npts * 100
}
results <- list(
bd.sel = bd.sel, od.sel = od.sel, bd.pts = bd.pts, od.pts = od.pts,
earlystop = earlystop, ntox = 0, neff = 0, u.mean = 0,
overdose = overdose, poorall = poorall, incoherent = 0, ov.sel = ov.sel
)
return(results)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.