
Calculate number of deaths required for Cox proportional hazards regression with two covariates for epidemiological Studies. The covariate of interest should be a binary variable. The other covariate can be either binary or non-binary. The formula takes into account competing risks and the correlation between the two covariates. Some parameters will be estimated based on a pilot data set.
numDEpi(X1,
X2,
power,
theta,
alpha = 0.05)
numeric. a nPilot
by 1 vector, where nPilot
is the number of subjects
in the pilot data set. This vector records the values of the covariate of
interest for the nPilot
subjects in the pilot study. X1
should
be binary and take only two possible values: zero and one.
numeric. a nPilot
by 1 vector, where nPilot
is the number of subjects
in the pilot study. This vector records the values of the second covariate
for the nPilot
subjects in the pilot study. X2
can be binary or
non-binary.
numeric. the postulated power.
numeric. postulated hazard ratio
numeric. type I error rate.
the number of deaths required to achieve the desired power with given type I error rate.
proportion of subjects taking
square of the correlation between
This is an implementation of the calculation of the number of required deaths
derived by Latouche et al. (2004)
for the following Cox proportional hazards regression in the epidemiological
studies:
Suppose we want to check if the hazard of
Schoenfeld DA. (1983). Sample-size formula for the proportional-hazards regression model. Biometrics. 39:499-503.
Latouche A., Porcher R. and Chevret S. (2004). Sample size formula for proportional hazards modelling of competing risks. Statistics in Medicine. 23:3263-3274.
# NOT RUN {
# generate a toy pilot data set
X1 <- c(rep(1, 39), rep(0, 61))
set.seed(123456)
X2 <- sample(c(0, 1), 100, replace = TRUE)
res <- numDEpi(X1 = X1,
X2 = X2,
power = 0.8,
theta = 2,
alpha = 0.05)
print(res)
# proportion of subjects died of the disease of interest.
psi <- 0.505
# total number of subjects required to achieve the desired power
ceiling(res$D / psi)
# }
Run the code above in your browser using DataLab