ComenzarEmpieza gratis

Choose a parametric model

Given lifelines offers a variety of parametric models, you want to find the best model for the heart patients DataFrame heart_patients.

Use the AIC score to assess the fit of each model below:

  • The Weibull model: WeibullFitter
  • The Exponential model: ExponentialFitter
  • The Log Normal mode: LogNormalFitter

All lifelines fitters above have been imported for you. The pandas and numpy libraries are imported as pd and np, respectively. Use the console to explore the DataFrame and its column names as needed.

Este ejercicio forma parte del curso

Survival Analysis in Python

Ver curso

Ejercicio interactivo práctico

Prueba este ejercicio y completa el código de muestra.

# Instantiate each fitter
wb = ____
exp = ____
log = ____
Editar y ejecutar código