titecrm is used to compute a dose for the next patient in a
phase I trial according to the TITE-CRM.titecrm(prior, target, tox, level, n = length(level), weights = NULL,
followup = NULL, entry = NULL, exit = NULL, obswin = NULL,
scheme = "linear", conf.level = 0.9, dosename = NULL, include = 1:n,
pid = 1:n, method = "bayes", model = "empiric", var.est = TRUE,
scale = sqrt(1.34), intcpt = 3, model.detail = TRUE, patient.detail = TRUE,
tite = TRUE)level must be equal to that of tox.followup, entry, exit, obswin,
and scheme will be ignored.
If not suentry and exit will be ignored.weights.dosename must be equal to that of
prior.level.model=``empiric'', this argument will be
ignored.post.var) is approximated by the posterior variance of
$# An example with adaptive weight foo2 <- titecrm(prior,target,y,level,followup=u,obswin=tau,scheme="adaptive") wts <- foo2$weights
# The `weights' argument makes `followup' and `obswin' obsolete foo3 <- titecrm(prior,target,y,level,weights=wts,followup=u,obswin=tau) plot(foo3,ask=T)
# Patient time information via `entry' and `exit' arguments entry <- c(7, 29, 49, 76, 92, 133, 241, 303, 363, 402) # entry time (days since study begins) exit <- c(185,210,217,257,116,314,420,405,405,405) # exit time (days since study begins) foo4 <- titecrm(prior,target,y,level,exit=exit,entry=entry,obswin=tau) plot(foo4,ask=T)