ComenzarEmpieza gratis

Model prison data with Weibull

You are a sociologist studying the time it takes for convicts to be rearrested after their release. The DataFrame prison contains information from 432 convicts who were released from Maryland state prisons in the 1970s and who were followed up with one year after release.

You will model the survival function of time-to-arrest using the Weibull model.

The matplotlib.pyplot library is imported as plt, and 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.

# Import WeibullFitter class
____

# Instantiate WeibullFitter class wb
____
Editar y ejecutar código