Like for univariate models, it is possible to create your own custom parametric survival models. Why might you want to do this?
lifelines has a very simple API to create custom parametric regression models. The author only needs to define the cumulative hazard function. For example, the cumulative hazard for the Exponential regression model looks like:
$$ H(t, x) = \frac{t}{\lambda(x)}\\ \lambda(x) = \exp{(\vec{\beta} \cdot \vec{x}^{\,T})} $$Below are some example custom models.
from lifelines.fitters import ParametricRegressionFitter
from autograd import numpy as np
from lifelines.datasets import load_rossi
class ExponentialAFTFitter(ParametricRegressionFitter):
# this is necessary, and should always be a non-empty list of strings.
_fitted_parameter_names = ['lambda_']
def _cumulative_hazard(self, params, T, Xs):
# params is a dictionary that maps unknown parameters to a numpy vector.
# Xs is a dictionary that maps unknown parameters to a numpy 2d array
lambda_ = np.exp(np.dot(Xs['lambda_'], params['lambda_']))
return T / lambda_
rossi = load_rossi()
rossi['intercept'] = 1.0
# the below variables maps dataframe columns to parameters
regressors = {
'lambda_': rossi.columns
}
eaf = ExponentialAFTFitter().fit(rossi, 'week', 'arrest', regressors=regressors)
eaf.print_summary()
<lifelines.ExponentialAFTFitter: fitted with 432 observations, 318 censored>
event col = 'arrest'
number of subjects = 432
number of events = 114
log-likelihood = -686.37
time fit was run = 2019-07-03 01:56:13 UTC
---
coef exp(coef) se(coef) z p -log2(p) lower 0.95 upper 0.95
lambda_ fin 0.37 1.44 0.19 1.92 0.06 4.18 -0.01 0.74
age 0.06 1.06 0.02 2.55 0.01 6.52 0.01 0.10
race -0.30 0.74 0.31 -0.99 0.32 1.63 -0.91 0.30
wexp 0.15 1.16 0.21 0.69 0.49 1.03 -0.27 0.56
mar 0.43 1.53 0.38 1.12 0.26 1.93 -0.32 1.17
paro 0.08 1.09 0.20 0.42 0.67 0.57 -0.30 0.47
prio -0.09 0.92 0.03 -3.03 <0.005 8.65 -0.14 -0.03
intercept 4.05 57.44 0.59 6.91 <0.005 37.61 2.90 5.20
---
Log-likelihood ratio test = 31.22 on 6 df, -log2(p)=15.41
%matplotlib inline
%config InlineBackend.figure_format = 'retina'
from lifelines.fitters import ParametricRegressionFitter
from autograd import numpy as np
class PolynomialCumulativeHazard(ParametricRegressionFitter):
_fitted_parameter_names = ['lambda1_', 'lambda2_', 'lambda3_']
def _cumulative_hazard(self, params, T, Xs):
lambda1_ = np.exp(np.dot(Xs['lambda1_'], params['lambda1_']))
lambda2_ = np.exp(np.dot(Xs['lambda2_'], params['lambda2_']))
lambda3_ = np.exp(np.dot(Xs['lambda3_'], params['lambda3_']))
return (T/lambda1_) + (T/lambda2_)**2 + (T/lambda3_)**3
def _add_penalty(self, params, neg_ll):
# authors can create their own non-traditional penalty functions too.
# This penalty is an "information-pooling" penalty, see more about it here:
# https://dataorigami.net/blogs/napkin-folding/churn
params_stacked = np.stack(params.values())
coef_penalty = 0
if self.penalizer > 0:
for i in range(params_stacked.shape[1] - 1): # assuming the intercept col is the last column...
coef_penalty = coef_penalty + (params_stacked[:, i]).var()
return neg_ll + self.penalizer * coef_penalty
rossi = load_rossi()
rossi['intercept'] = 1.0
# the below variables maps dataframe columns to parameters
regressors = {
'lambda1_': rossi.columns,
'lambda2_': rossi.columns,
'lambda3_': rossi.columns
}
pf = PolynomialCumulativeHazard(penalizer=.5).fit(rossi, 'week', 'arrest', regressors=regressors)
pf.print_summary()
ax = plt.subplot()
pf.plot(columns=['fin'], ax=ax)
pf = PolynomialCumulativeHazard(penalizer=5.).fit(rossi, 'week', 'arrest', regressors=regressors)
pf.plot(columns=['fin'], ax=ax, c="r")
/Users/camerondavidson-pilon/code/lifelines/lifelines/fitters/__init__.py:1510: RuntimeWarning: invalid value encountered in sqrt se = np.sqrt(self.variance_matrix_.diagonal())
<lifelines.PolynomialCumulativeHazard: fitted with 432 observations, 318 censored>
event col = 'arrest'
penalizer = 0.5
number of subjects = 432
number of events = 114
log-likelihood = -680.15
time fit was run = 2019-07-03 01:56:13 UTC
---
coef exp(coef) se(coef) z p -log2(p) lower 0.95 upper 0.95
lambda1_ fin 0.25 1.28 0.18 1.40 0.16 2.64 -0.10 0.60
age 0.04 1.05 0.02 2.29 0.02 5.49 0.01 0.08
race -0.30 0.74 0.28 -1.04 0.30 1.75 -0.85 0.26
wexp 0.15 1.16 0.19 0.77 0.44 1.18 -0.23 0.52
mar 0.30 1.35 0.31 0.98 0.33 1.61 -0.30 0.91
paro 0.06 1.06 0.18 0.31 0.76 0.40 -0.30 0.42
prio -0.06 0.94 0.03 -2.15 0.03 4.99 -0.12 -0.01
intercept 4.70 110.30 0.59 7.98 <0.005 49.23 3.55 5.86
lambda2_ fin 0.22 1.25 0.24 0.93 0.35 1.50 -0.24 0.68
age 0.05 1.05 0.02 2.08 0.04 4.75 0.00 0.10
race -0.15 0.86 0.36 -0.41 0.68 0.56 -0.85 0.55
wexp 0.00 1.00 0.25 0.01 0.99 0.01 -0.48 0.48
mar 0.26 1.29 0.40 0.65 0.52 0.95 -0.52 1.04
paro 0.07 1.07 0.24 0.27 0.78 0.35 -0.41 0.54
prio -0.06 0.94 0.04 -1.46 0.14 2.79 -0.14 0.02
intercept 58.15 1.80e+25 nan nan nan nan nan nan
lambda3_ fin 0.19 1.21 0.14 1.33 0.18 2.44 -0.09 0.47
age 0.06 1.06 0.02 2.75 0.01 7.40 0.02 0.10
race 0.00 1.00 0.19 0.01 0.99 0.01 -0.37 0.37
wexp -0.14 0.87 0.15 -0.93 0.35 1.52 -0.44 0.16
mar 0.22 1.24 0.30 0.71 0.48 1.06 -0.38 0.81
paro 0.08 1.08 0.14 0.55 0.58 0.78 -0.19 0.34
prio -0.05 0.95 0.02 -2.24 0.03 5.31 -0.10 -0.01
intercept 3.49 32.75 0.47 7.42 <0.005 42.96 2.57 4.41
---
Log-likelihood ratio test = 134.41 on 22 df, -log2(p)=57.81
/Users/camerondavidson-pilon/code/lifelines/lifelines/fitters/__init__.py:1510: RuntimeWarning: invalid value encountered in sqrt se = np.sqrt(self.variance_matrix_.diagonal())
<matplotlib.axes._subplots.AxesSubplot at 0x11e3e7da0>
Suppose in our population we have a subpopulation that will never experience the event of interest. Or, for some subjects the event will occur so far in the future that it's essentially at time infinity. In this case, the survival function for an individual should not asymptically approach zero, but some positive value. Models that describe this are sometimes called cure models (i.e. the subject is "cured" of death and hence no longer susceptible) or time-lagged conversion models.
It would be nice to be able to use common survival models and have some "cure" component. Let's suppose that for individuals that will experience the event of interest, their survival distrubtion is a Weibull, denoted $S_W(t)$. For a random selected individual in the population, thier survival curve, $S(t)$, is:
$$ \begin{align*} S(t) = P(T > t) &= P(\text{cured}) P(T > t\;|\;\text{cured}) + P(\text{not cured}) P(T > t\;|\;\text{not cured}) \\ &= p + (1-p) S_W(t) \end{align*} $$Even though it's in an unconvential form, we can still determine the cumulative hazard (which is the negative logarithm of the survival function):
$$ H(t) = -\log{\left(p + (1-p) S_W(t)\right)} $$from autograd.scipy.special import expit
class CureModel(ParametricRegressionFitter):
_fitted_parameter_names = ["lambda_", "beta_", "rho_"]
def _cumulative_hazard(self, params, T, Xs):
c = expit(np.dot(Xs["beta_"], params["beta_"]))
lambda_ = np.exp(np.dot(Xs["lambda_"], params["lambda_"]))
rho_ = np.exp(np.dot(Xs["rho_"], params["rho_"]))
sf = np.exp(-(T / lambda_) ** rho_)
return -np.log((1 - c) + c * sf)
swf = CureModel(penalizer=.1)
rossi = load_rossi()
rossi["intercept"] = 1.0
covariates = {"lambda_": rossi.columns, "rho_": ["intercept", "prio"], "beta_": rossi.columns}
swf.fit(rossi, "week", event_col="arrest", regressors=covariates, timeline=np.arange(250))
swf.print_summary(2)
<lifelines.CureModel: fitted with 432 observations, 318 censored>
event col = 'arrest'
penalizer = 0.1
number of subjects = 432
number of events = 114
log-likelihood = -733.43
time fit was run = 2019-07-03 02:01:56 UTC
---
coef exp(coef) se(coef) z p -log2(p) lower 0.95 upper 0.95
lambda_ fin 0.35 1.42 0.15 2.40 0.02 5.92 0.06 0.64
age 0.11 1.12 0.01 11.67 <0.005 102.18 0.09 0.13
race 0.69 1.99 0.19 3.63 <0.005 11.79 0.32 1.06
wexp 0.45 1.57 0.15 3.06 <0.005 8.84 0.16 0.74
mar 0.39 1.48 0.23 1.69 0.09 3.45 -0.06 0.85
paro 0.21 1.23 0.15 1.35 0.18 2.49 -0.09 0.51
prio 0.02 1.02 0.02 0.72 0.47 1.08 -0.03 0.06
intercept 0.27 1.31 0.10 2.60 0.01 6.73 0.07 0.48
rho_ prio 0.03 1.03 0.02 1.48 0.14 2.85 -0.01 0.06
intercept 0.10 1.11 0.08 1.33 0.18 2.44 -0.05 0.25
beta_ fin -0.07 0.93 0.18 -0.37 0.71 0.50 -0.43 0.29
age -0.01 0.99 0.01 -0.74 0.46 1.12 -0.03 0.01
race 0.15 1.17 0.24 0.63 0.53 0.92 -0.33 0.63
wexp 0.07 1.08 0.19 0.40 0.69 0.53 -0.29 0.44
mar 0.04 1.04 0.30 0.12 0.91 0.14 -0.56 0.63
paro -0.08 0.92 0.18 -0.46 0.65 0.63 -0.45 0.28
prio 0.04 1.04 0.03 1.24 0.21 2.22 -0.02 0.09
intercept -0.04 0.96 0.10 -0.39 0.70 0.52 -0.25 0.17
---
Log-likelihood ratio test = 516.07 on 16 df, -log2(p)=328.45
swf.predict_survival_function(rossi.loc[::75]).plot(figsize=(12,6))
<matplotlib.axes._subplots.AxesSubplot at 0x1249c0400>
# what's the effect on the survival curve if I vary "age"
fig, ax = plt.subplots(figsize=(12, 6))
swf.plot_covariate_groups(['age'], values=np.arange(20, 50, 5), cmap='coolwarm', ax=ax)
<matplotlib.axes._subplots.AxesSubplot at 0x12533e630>