50% off: Unlimited data and AI learning.
The Learning Leader's Guide to AI Literacy

powerSurvEpi (version 0.1.3)

powerEpiInt.default0: Power Calculation Testing Interaction Effect for Cox Proportional Hazards Regression

Description

Power calculation testing interaction effect for Cox proportional hazards regression with two covariates for Epidemiological Studies. Both covariates should be binary variables. The formula takes into account the correlation between the two covariates.

Usage

powerEpiInt.default0(n, 
		     theta, 
		     p, 
		     psi, 
		     G, 
		     rho2, 
		     alpha = 0.05)

Arguments

n

integer. total number of subjects.

theta

numeric. postulated hazard ratio.

p

numeric. proportion of subjects taking the value one for the covariate of interest.

psi

numeric. proportion of subjects died of the disease of interest.

G

numeric. a factor adjusting the sample size. The sample size needed to detect an effect of a prognostic factor with given error probabilities has to be multiplied by the factor G when an interaction of the same magnitude is to be detected.

rho2

numeric. square of the correlation between the covariate of interest and the other covariate.

alpha

numeric. type I error rate.

Value

The power of the test.

Details

This is an implementation of the power calculation formula derived by Schmoor et al. (2000) for the following Cox proportional hazards regression in the epidemiological studies: h(t|x1,x2)=h0(t)exp(β1x1+β2x2+γ(x1x2)), where both covariates X1 and X2 are binary variables.

Suppose we want to check if the hazard ratio of the interaction effect X1X2=1 to X1X2=0 is equal to 1 or is equal to exp(γ)=θ. Given the type I error rate α for a two-sided test, the power required to detect a hazard ratio as small as exp(γ)=θ is power=Φ(z1α/2+nG[log(θ)]2p(1p)ψ(1ρ2)), where za is the 100a-th percentile of the standard normal distribution, ψ is the proportion of subjects died of the disease of interest, and ρ=corr(X1,X2)=(p1p0)×q(1q)p(1p), and p=Pr(X1=1), q=Pr(X2=1), p0=Pr(X1=1|X2=0), and p1=Pr(X1=1|X2=1), and G=[(1q)(1p0)p0+q(1p1)p1]2(1q)q(1p0)p0(1p1)p1.

If X1 and X2 are uncorrelated, we have p0=p1=p leading to 1/[(1q)q]. For q=0.5, we have G=4.

References

Schmoor C., Sauerbrei W., and Schumacher M. (2000). Sample size considerations for the evaluation of prognostic factors in survival analysis. Statistics in Medicine. 19:441-452.

See Also

powerEpiInt.default1, powerEpiInt2

Examples

Run this code
# NOT RUN {
  # Example at the end of Section 4 of Schmoor et al. (2000).
  powerEpiInt.default0(n = 184, 
		       theta = 3, 
		       p = 0.61, 
		       psi = 139 / 184, 
                       G = 4.79177, 
		       rho2 = 0.015^2, 
		       alpha = 0.05)
  
# }

Run the code above in your browser using DataLab