View source: R/gs_bound_summary.R
gs_bound_summary | R Documentation |
Summarizes the efficacy and futility bounds for each analysis.
gs_bound_summary(
x,
digits = 4,
ddigits = 2,
tdigits = 0,
timename = "Month",
alpha = NULL
)
x |
Design object. |
digits |
Number of digits past the decimal to be printed in the body of the table. |
ddigits |
Number of digits past the decimal to be printed for the natural parameter delta. |
tdigits |
Number of digits past the decimal point to be shown for estimated timing of each analysis. |
timename |
Text string indicating time unit. |
alpha |
Vector of alpha values to compute additional efficacy columns. |
A data frame
gsDesign::gsBoundSummary()
library(gsDesign2)
x <- gs_design_ahr(info_frac = c(.25, .75, 1), analysis_time = c(12, 25, 36))
gs_bound_summary(x)
x <- gs_design_wlr(info_frac = c(.25, .75, 1), analysis_time = c(12, 25, 36))
gs_bound_summary(x)
# Report multiple efficacy bounds (only supported for AHR designs)
x <- gs_design_ahr(analysis_time = 1:3*12, alpha = 0.0125)
gs_bound_summary(x, alpha = c(0.025, 0.05))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.