Custom Cox PH model
You have isolated three factors that are statistically significant at the 0.05 level in the previous exercise: fin, age, and prio.
fin: if the convict received financial assistance, hazards decrease by 31%;age: for each age older than average, hazards decrease by 5%;prio: for each prior arrest more than average, hazards increase by 9%.
Let's build a custom Cox PH model using these covariates.
The CoxPHFitter class has been imported for you, and the pandas and numpy libraries are imported as pd and np, respectively. Use the console to explore the DataFrame prison and its column names as needed.
Cet exercice fait partie du cours
Survival Analysis in Python
Instructions
- Instantiate a
CoxPHFitterclass calledcustom_cph. - Fit
custom_cphwith a custom regression modelfin + age + priousing theformulaparameter. - Get the model summary of
cphand print it.
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
# Instantiate CoxPHFitter class
custom_cph = ____
# Fit custom model
____
# Print model summary
print(____)