Survival analysis is the analysis of time duration until the occurrence of an event. It has a strong root in economics, medicine, engineering, and sociology.

As a statistician, I find most interest in its heavy influence as an application for traditional statistics, where prominent statisticians have placed much effort to develop new methodologies with this domain in mind and many today continue to do so. Survival analysis also has an interesting relationship to counting processes. As the Cox proportional hazards model extends Poisson regression for rates, the Cox process extends the Poisson process. We describe this in detail.

Survival and hazard functions

Suppose there are observations in which we observe times with corresponding events . The event indicates either that something has occurred, or “failed”, () or that the event has not occured, or is “censored” (). We call such events censored in the sense that we do not observe the true failure time. For instance, may correspond to the death of a patient and may correspond to the patient dropping out of the study.

The survival function is

which is the probability of failure after time , or equivalently, “surviving” by time . Not surprisingly, the survival function is often the primary object of interest in survival analysis. The hazard function is

Intuitively, the hazard function measures the instantaneous chance of failing at time given survival up to time . Note that it is neither a probability nor density as it does not integrate to one, c.f., Freedman (2008) for more details.

One interesting property of the hazard function is that one can express the survival function in terms of it:

which implies

Thus one can write the probability density function strictly in terms of the hazard function

Therefore for statistical analysis of any form—causal, experimental design, prediction, etc—one would like to characterize the hazard function. The Cox proportional hazards model (Cox, 1972) is the most popular method for doing so. Another is the accelerated failure time model, which models the effect of covariates as accelerating or decelerating the life of an event, c.f., Cox and Oates (1984) for a description.

Cox proportional hazards model and Poisson regression

Let denote the baseline hazard function, and let be covariates for observation . The Cox proportional hazards model specifies the hazard function for the observation as

where the parameters of interest are and the baseline hazard is unknown. The model is semiparametric: the covariates are multiplicatively related to the baseline—thus having a parametric form—but the model does not require any specification of the baseline hazard function—thus having a nonparametric form.

What makes this model so powerful is in its ease of inference while being semiparametric. It is possible to construct a partial likelihood, which allows one to estimate the model parameters , without any consideration of the functional form of the baseline hazard itself. To do so, first note that for a censored observation , we only know that its lifetime exceeds and thus its individual likelihood is . Then the likelihood of all data points can be written as

\begin{align}
L(\theta\mid \mathbf{t},\mathbf{c},\mathbf{x})
&= \prod_{i=1}^n h(t_i\mid \theta, x_i)^{c_i} S(t_i\mid \theta, x_i)
\\
&= \prod_{i=1}^n (h_0(t_i)\exp(x_i'\theta))^{c_i} \exp\left\{-{\exp(x_i'\theta)}\int_0^{t_i}
h_0(s)ds\right\}
\end{align}

The log-likelihood is thus

where and . Thus the score function is

Note that the baseline hazard evaluations which form are unknown. However, one can show that their MLE given is

where is the risk set, i.e., the set of units available to fail. In this case, by our ordering assumption.

One can also derive the Hessian, but a simple maximum likelihood procedure using gradient descent can now easily proceed: one iterates , re-estimates ’s conditional on the new update of , then repeats.

Perhaps surprisingly, estimates from this partial likelihood, which require no estimation of the baseline hazard , share the same asymptotic properties as that of the full likelihood (Tsiatis, 1975).

Poisson models and stochastic processes

On a modelling perspective, the Cox proportional hazards model has a striking resemblance to Poisson regression. If the baseline hazard is a constant for some , then the log likelihood is

\begin{align}
\ell(\theta; \mathbf{t},\mathbf{c},\mathbf{x})
&= \sum_{i=1}^n \left[c_i \log
h(t_i\mid\theta,x_i) + \log S(t_i\mid\theta,x_i)\right]
\\
&= \sum_{i=1}^n \left[c_i \log
[\lambda\exp(x_i'\theta)] - t_i\lambda\exp(x_i'\theta)\right]
\end{align}

Excluding additive constants, this is the same expression as the log likelihood of the ’s, seen as realizations , where . Therefore the Cox proportional hazards model with constant baseline is equivalent to the Poisson regression

where one can interpret as an offset for modelling the rate , and as an intercept. In full generality, the Cox model is simply a Poisson model for rates in which the “intercept” is a function varying over time.

If one has prior knowledge about the structural form of the baseline hazard, then it makes sense to forgo the partial likelihood approach and to adopt a Bayesian methodology, in which one places a stochastic process as a prior for , e.g., using a Gaussian process, Beta process, or extended Gamma process, see Dey and Rao (2005; Section 3.2.1) for more details.

The specification of the hazard function in survival analysis is analogous to specifying the intensity function for point processes. That is, as the Cox proportional hazards model with constant baseline hazard is equivalent to a form of Poisson regression, a Cox process with constant intensity is equivalent to the Poisson process.

Another interesting relationship is that in survival analysis, the estimand of interest is often not a count but a rate. After all, a count of 1 already implies that the person is dead! There are more general formulations of survival analysis which consider multiple failures for a single unit, however, and the special case of just one already has much significant analysis. How this might tie into current progress on Bayesian nonparametrics for count data is unknown and certainly worth looking into.

References

  • David R. Cox. Regression models and life tables (with discussion). Journal of the Royal Statistical Society: Series B, 34:187-220, 1972.
  • David R. Cox. Partial likelihood. Biometrika, 62: 269-276, 1975.
  • David R. Cox and David Oakes. Analysis of Survival Data. CRC Press, 1984.
  • Dipak Dey and Calyampudi Radhakrishna Rao. Bayesian Thinking: Modeling and Computation. North Holland, 2005.
  • David A. Freedman. Survival analysis: a primer. Technical Report, 2008.
  • Anastasios Tsiatis. A Large Sample Study of Cox’s Regression Model. Annals of Statistics, 9(1): 93-108, 1981.