| analyzeSP23Design | R Documentation |
executeSP23Design or a history
of the actual conduct of a single trial is provided, it returns the
analysis results.
Produces analysis results from the run of a single trial or a number of simulations.
analyzeSP23Design(sp23Design, trialHistory = NULL, data = NULL,
col=c("red", "red", "brown", "brown"), lty=c(1,2,1,2))
sp23Design |
The design object typically produced by calling
|
trialHistory |
Typically the result of calling |
data |
This is only used when the argument |
col |
Colors used for the survival plots |
lty |
Line types for the survival plots |
If trialHistory is a single data frame, the naive response
estimates and a survival plot are produced. Otherwise, the counts of
the number of times the various hypothesis are rejected and other
details are returned.
A list of two items named responseSummary and designSummary
If trialHistory is a single data frame, the naive response
estimates are returned in responseSummary and a survival plot
is produced. Otherwise, the counts of the number of times the various
hypothesis are rejected and other details are returned in
designSummary.
Mei-Chiung Shih, Balasubramanian Narasimhan, Pei He
Lai, Tze Leung and Lavori, Philip W. and Shih, Mei-Chiung. Sequential Design of Phase II-III Cancer Trials, Statistics in Medicine, Volume 31, issue 18, p.1944-1960, 2012.
## Not run:
catn <- function(...) cat(..., "\n")
trialParameters <- list(minimumNumberOfEvents = 20,
minimumIncreaseInV = 0.2,
numberRecruitedEachYear = c(80, 120, 160, 160),
followupTime = 3,
adminCensoringTime = 7,
interimLookTime = c(1, 2, 3, 5, 7),
type1ErrorForResponse = 0.05,
type2ErrorForResponse = 0.01,
glrBoundarySidedness = "one", # one sided or two-sided
type1Error = 0.05,
type2Error = 0.10,
epsType1 = 1/3,
epsType2 = 1/3)
trueParameters <- list(p0 = 0.3,
p1 = 0.3,
pdiffHyp=0.3,
theta = list(
alpha = 0,
beta = 0,
gamma = 0),
baselineLambda = 0.35,
etaHyp = 0.25)
rngSeed <- 9872831
sp23Design <- generateSP23Design(trueParameters, trialParameters)
print(sp23Design)
trialHistory <- exploreSP23Design(sp23Design, numberOfSimulations=25, rngSeed=rngSeed)
result <- analyzeSP23Design(sp23Design, trialHistory)$designSummary
catn("numberOfTimesH0RIsRejectedAtFirstLook",result[["numberOfTimesH0RIsRejectedAtFirstLook"]])
catn("numberOfTimesH0RIsRejected", result[["numberOfTimesH0RIsRejected"]])
catn("numberOfTimesStoppedForFutility", result[["numberOfTimesStoppedForFutility"]])
catn("numberOfTimesH0SIsAccepted", result[["numberOfTimesH0SIsAccepted"]])
catn("numberOfTimesH0SIsRejected", result[["numberOfTimesH0SIsRejected"]])
catn("numberOfTimesFutilityDecidedAtLastLook",result[["numberOfTimesFutilityDecidedAtLastLook"]])
catn("numberOfTimesTrialEndedAtLook", result[["numberOfTimesTrialEndedAtLook"]])
catn("avgExitTime", result[["avgExitTime"]])
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.