Skip to content

Instantly share code, notes, and snippets.

@dariasmorodina
Created February 5, 2020 01:14
from lifelines import CoxTimeVaryingFitter
cox_tv = CoxTimeVaryingFitter()
cox_tv.fit(data_cox_tv, id_col="id", event_col="default_time", start_col="start", stop_col="stop", show_progress=True, step_size=0.1)
#Iteration 30: norm_delta = 0.00000, step_size = 1.00000, ll = -179884.48600,
#newton_decrement = 0.00000, seconds_since_start = 207.0
#Convergence completed after 30 iterations.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment