Description Usage Arguments Details Value Examples
Based on piecewise enrollment rate, failure rate, and dropout rates computes approximate information and effect size using an average hazard ratio model.
1 2 3 4 5 6 7 8 9 |
enrollRates |
enrollment rates |
failRates |
failure and dropout rates |
ratio |
Experimental:Control randomization ratio |
events |
Targeted minimum events at each analysis |
analysisTimes |
Targeted minimum study duration at each analysis |
The AHR()
function computes statistical information at targeted event times.
The tEvents()
function is used to get events and average HR at targeted analysisTimes
.
a tibble
with columns Analysis, Time, AHR, Events, theta, info, info0.
info, info0
contains statistical information under H1, H0, respectively.
For analysis k
, Time[k]
is the maximum of analysisTimes[k]
and the expected time
required to accrue the targeted events[k]
.
AHR
is expected average hazard ratio at each analysis.
1 2 3 4 5 6 7 8 9 10 | library(gsDesign)
library(gsDesign2)
# Only put in targeted events
gs_info_ahr(events = c(30, 40, 50))
# Only put in targeted analysis times
gs_info_ahr(analysisTimes = c(18, 27, 36))
# Some analysis times after time at which targeted events accrue
# Check that both Time >= input analysisTime and Events >= input events
gs_info_ahr(events = c(30, 40, 50), analysisTimes = c(16, 19, 26))
gs_info_ahr(events = c(30, 40, 50), analysisTimes = c(14, 20, 24))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.