Cox proportional hazards analysis

Summary

Cox proportional hazards analysis is a type of survival analysis. Generally speaking, a survival analysis is a mathematical method that models a) the length of time until an event occurs and b) whether that event occurs at all as a function of a number of variables of interest.

Disclaimer: I am going to write a very basic-level understanding here, since I am not a mathematician, nor are most of the target audience for this Encyclopedia. I found the videos on survival analysis from “MarinStatsLectures-R Programming & Statistics” on Youtube to be really useful. They’re what helped me write this entry rather than just having a vague idea of what was going on: https://www.youtube.com/c/marinstatlectures
Also known as:

Cox PH, Cox regression

Samples needed

Dataset with independent variables of interest & time until target event

Controls

Beyond the scope of this work!

Method

As stated above, a survival analysis is a mathematical method that models a) whether an event occurs and b) the time it takes to occur as a function of a number of independent variables. So, for instance, you could use a dataset to predict how long a person is likely to survive after a lung cancer diagnosis (here, “event” = death) based on age at diagnosis, tumor stage at diagnosis, assigned sex, smoking history, etc.

Cox PH analysis is one particular type of survival analysis. The goal of Cox PH is to estimate something called a hazard ratio (HR) rather than to predict the length of survival. Let’s use the example of lung cancer above. A hazard ratio tells you how many times more likely a person from one group (i.e. a past or current smoker) is to die of lung cancer than a person another group (i.e. a never-smoker) at a given moment in time.

Important!! Not every analysis that uses this kind of math has death as an end point. When you’re looking at a Cox PH analysis, always ask yourself what the “event” or “outcome” is that’s being analyzed.

So, for the lung cancer example above, you could have a dataset something like this:

Time from diagnosis to evaluation for event (months) Did the event happen? (i.e. death) Age at diagnosis Tumor stage at diagnosis …..(list all variables)
Patient 1 7 Yes → 1 68 IV → 4
Patient 2 50 No → 0 75 II → 2
… (list all patients)
Dependent variables Independent variables

Step 1: Each patient would be a point & you would plot this data. (If you were doing just age vs. survival, it would be plotted in 2D space, if age and tumor stage vs. survival, it would be plotted in 3D space, etc.)

Step 2: Perform regression analysis. This basically means you use a computer program to figure out what constant values make the data points fit a certain equation. For example, you may be familiar with linear regression. The equation of a line is y = mx + b. So, if you plot a bunch of x-y points and use a computer program to find the best fit line, you can get the values of m (slope) & b (intercept). (See Figure 1.)

Scatterplot with a straight line drawn through points.

Figure 1. Example of linear regression analysis. “chow test illustration” by Kmhkmh is licensed under CC BY 4.0.

 

Cox PH analysis is just like this, except you are fitting a much more complicated equation:

[latex]Hazard(t) = h_0 (t) + e^{{b_1}{x_1}+{b_2}{x_2}+...}[/latex]

In this equation, the x’s are the independent variables like age at diagnosis, tumor stage at diagnosis, etc. The b’s are the regression coefficients. They determine how important each independent variable is to the outcome.

So, what’s the outcome? Your computer program gives you the b values from the equation above, which can be easily converted into a hazard ratio for each independent variable.

How do you interpret the HR? Say from the example above you found an HR of 1.2 when comparing smokers to non-smokers. That means that for people diagnosed with lung cancer, people who are current or previous smokers are 1.2 times more likely to die from their lung cancer at any given moment in time than those who have lung cancer but never smoked. (Or in other words, they’re 20% more likely to die.) This is “adjusted for” their age at diagnosis, tumor stage at diagnosis, assigned sex, and any other independent variables that were included in the analysis. So, this HR tells you just the effect of their smoking status on survival.

 

Katherine R. Mattaini, reviewed by Joshua Abston (B.S. Applied Mathematics, RWU ’21)
Last updated on April 12, 2022

License

Icon for the Creative Commons Attribution-ShareAlike 4.0 International License

Encyclopedia of Biological Methods Copyright © 2022 by Katherine Mattaini is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License, except where otherwise noted.

Share This Book