Regression standardization in Cox proportional hazards models
Regression standardization in Cox proportional hazards models
stdCoxph performs regression standardization in Cox proportional hazards models, at specified values of the exposure, over the sample covariate distribution. Let T, X, and Z be the survival outcome, the exposure, and a vector of covariates, respectively. stdCoxph uses a fitted Cox proportional hazards model to estimate the standardized survival function θ(t,x)=E{S(t∣X=x,Z)}, where t is a specific value of T, x is a specific value of X, and the expectation is over the marginal distribution of Z.
fit: an object of class "coxph", as returned by the coxph function in the survival package, but without special terms strata, cluster or tt. Only breslow method for handling ties is allowed. If arguments weights and/or subset are used when fitting the model, then the same weights and subset are used in stdGlm.
data: a data frame containing the variables in the model. This should be the same data frame as was used to fit the model in fit.
X: a string containing the name of the exposure variable X in data.
x: an optional vector containing the specific values of X at which to estimate the standardized survival function. If X is binary (0/1) or a factor, then x defaults to all values of X. If X is numeric, then x defaults to the mean of X. If x is set to NA, then X is not altered. This produces an estimate of the marginal survival function S(t)=E{S(t∣X,Z)}.
t: an optional vector containing the specific values of T at which to estimate the standardized survival function. It defaults to all the observed event times in data.
clusterid: an optional string containing the name of a cluster identification variable when data are clustered.
subsetnew: an optional logical statement specifying a subset of observations to be used in the standardization. This set is assumed to be a subset of the subset (if any) that was used to fit the regression model.
Details
stdCoxph assumes that a Cox proportional hazards model
λ(t∣X,Z)=λ0(t)exp{h(X,Z;β)}
has been fitted. Breslow's estimator of the cumulative baseline hazard Λ0(t)=∫0tλ0(u)du
is used together with the partial likelihood estimate of β to obtain estimates of the survival function S(t∣X=x,Z):
S^(t∣X=x,Z)=exp[−Λ^0(t)exp{h(X=x,Z;β^)}].
For each t in the t argument and for each x in the x argument, these estimates are averaged across all subjects (i.e. all observed values of Z) to produce estimates
θ^(t,x)=i=1∑nS^(t∣X=x,Zi)/n,
where Zi is the value of Z for subject i, i=1,...,n. The variance for θ^(t,x) is obtained by the sandwich formula.
Returns
An object of class "stdCoxph" is a list containing - call: the matched call.
input: input is a list containing all input arguments.
est: a matrix with length(t) rows and length(x) columns, where the element on row i and column j is equal to θ^(t[i],x[j]).
vcov: a list with length(t) elements. Each element is a square matrix with length(x) rows. In the k:th matrix, the element on row i
and column j is the (estimated) covariance of θ^(t[k],x[i]) and θ^(t[k],x[j]).
References
Chang I.M., Gelman G., Pagano M. (1982). Corrected group prognostic curves and summary statistics. Journal of Chronic Diseases 35 , 669-674.
Gail M.H. and Byar D.P. (1986). Variance calculations for direct adjusted survival curves, with applications to testing for no treatment effect. Biometrical Journal
28 (5), 587-599.
Makuch R.W. (1982). Adjusted survival curve estimation using covariates. Journal of Chronic Diseases 35 , 437-443.
Sjolander A. (2016). Regression standardization with the R-package stdReg. European Journal of Epidemiology 31 (6), 563-574.
Sjolander A. (2016). Estimation of causal effect measures with the R-package stdReg. European Journal of Epidemiology 33 (9), 847-858.
Author(s)
Arvid Sjolander
Note
Standardized survival functions are sometimes referred to as (direct) adjusted survival functions in the literature.
stdCoxph does not currently handle time-varying exposures or covariates.
stdCoxph internally loops over all values in the t argument. Therefore, the function will usually be considerably faster if length(t) is small.
The variance calculation performed by stdCoxph does not condition on the observed covariates Zˉ=(Z1,...,Zn). To see how this matters, note that
The usual parameter β in a Cox proportional hazards model does not depend on Zˉ. Thus, E(β^∣Zˉ) is independent of Zˉ as well (since E(β^∣Zˉ)=β), so that the term var[E{β^∣Zˉ}] in the corresponding variance decomposition for var(β^) becomes equal to 0. However, θ(t,x) depends on Zˉ through the average over the sample distribution for Z, and thus the term var[E{θ^(t,x)∣Zˉ}]
is not 0, unless one conditions on Zˉ. The variance calculation by Gail and Byar (1986) ignores this term, and thus effectively conditions on Zˉ.