Solved – How to interpret standard errors in a Cox model

cox-modelhazardstandard errorstatasurvival

I am running a multi-variate Cox regression and Stata provides the standard errors for each hazard ratio. How are theses to be interpreted? I know that I want my coefficients to be large compared to my SEs, but I don't know if the same rule applies to ratios.

Best Answer

The formula for the Cox proportional hazards is:

$$h(t)=h_0(t)e^{\beta_1*x_1+...+\beta_n*x_n}$$

All $\beta$ are thus independent of the baseline hazard, the $h_0(t)$, allowing the comparison between different hazard ratios. For instance, if we have two treatment arms one with placebo ($X_{treat}=0$) and one with active substance ($X_{treat}=1$) where we also adjust for sex, we get:

$$HR=h_{treated}(t)/h_{placebo}(t)=\frac{h_0(t)e^{\beta_{treat}*1+\beta_{sex}*x_{sex}}}{h_0(t)e^{\beta_{treat}*0+\beta_{sex}*x_{sex}}} = e^{\beta_{treat}*1-\beta_{treat}*0+\beta_{sex}*x_{sex}-\beta_{sex}*x_{sex}}=e^{\beta_{treat}}$$

Note that the $\beta$ is in exponential format, thus the SE for the $\beta$ is also in the exponential form. When you compare the coefficient with the SE you need to do this with the $\beta$ in the logarithmic form. I would refrain from using the SEs for anything else than for confidence intervals/p-values.