Description Usage Arguments Details Value Author(s) Examples
View source: R/decision.finding.R
This function returns the decision given the decision table, the total number of patients, the number of patients who experienced toxicity and the number of responses.
1 | decision.finding(out.matrix, n, t, r)
|
out.matrix |
A decision matrix. |
n |
The number of enrolled subjects. |
t |
The number of subjects experienced dose limiting toxicities (DLT). |
r |
The number of responses. |
decision.finding()
is a helper function to get.decision.obd.kb()
and get.decision.obd2.kb()
. decision.finding()
returns the decision given the decision table, the total number of patients, the number of patients who experienced toxicity and the number of responses. If the number of subjects enrolled is n, then the number of possible combination for subjects who experienced toxicity and efficacy is (n+1) x (n+1). For n = 30, the number of entries is 961. Finding the decision given a scenario is tedious. decision.finding()
resolves this challenge by helping users to obtain the decision easily with the input of the decision table (output from get.decision.obd.kb()
and get.decision.obd2.kb()
), the total number of patients, the number of patients who experienced toxicity and the number of responses.
The function decision.finding()
returns the decision.
Hongying Sun, Li Tang, and Haitao Pan
1 2 3 4 5 6 7 8 9 10 11 | output.matrix <- get.decision.obd.kb( toxicity.low = 0.15,
toxicity.moderate= 0.25,
toxicity.high = 0.35,
efficacy.low = 0.25,
efficacy.moderate = 0.45,
efficacy.high = 0.65,
target.toxicity=0.20,
target.efficacy=0.40,
cohortsize=3, ncohort=10)$decision.matrix
decision <- decision.finding (out.matrix=output.matrix, n=6, t=1, r=3)
decision
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.