accrual + tmin. Treatment
allocation is assumed to be 1:1.
ciapower(tref, n1, n2, m1c, m2c, r1, r2, accrual, tmin,
alpha=0.05, pr=TRUE)
m1c by intervention, stratum 1
m2c by intervention, stratum 2
FALSE to suppress printing of details
Peterson B, George SL: Controlled Clinical Trials 14:511–522; 1993.
# Find the power of a race x treatment test. 25% of patients will
# be non-white and the total sample size is 14000.
# Accrual is for 1.5 years and minimum follow-up is 5y.
# Reduction in 5-year mortality is 15% for whites, 0% or -5% for
# non-whites. 5-year mortality for control subjects if assumed to
# be 0.18 for whites, 0.23 for non-whites.
n <- 14000
for(nonwhite.reduction in c(0,-5)) {
cat("\n\n\n% Reduction in 5-year mortality for non-whites:",
nonwhite.reduction, "\n\n")
pow <- ciapower(5, .75*n, .25*n, .18, .23, 15, nonwhite.reduction,
1.5, 5)
cat("\n\nPower:",format(pow),"\n")
}