Closed
Description
# Compare nonbinding and binding futility bounds
design1 <- getDesignGroupSequential(
kMax = 4, alpha = 0.05,
sided = 1,
informationRates = 1:4/4,
typeOfDesign = "asOF",
typeBetaSpending = "bsOF")
design2 <- getDesignGroupSequential(
kMax = 4, alpha = 0.05,
sided = 1,
informationRates = 1:4/4,
typeOfDesign = "asOF",
typeBetaSpending = "bsOF",
bindingFutility = TRUE)
plot(getDesignSet(designs = c(design1, design2),
variedParameters = "bindingFutility"))
# The final legend line is:
# TRUE, Futility bound (non-binding)
# The TRUE indicates that futility is binding.
# The "(non-binding)" is incorrect.
# In contrast
plot(design2)
# has the second line in the legend "Futility bound (binding)"