ComeçarComece de graça

Plotting and comparing survival curves

Back at the heart clinic, you want to present some visualizations that showcase the differences in patient survival times to the Head of Research. You will plot the survival curves of patients with and without pericardial effusion side-by-side.

A KaplanMeierFitter object kmf is instantiated. DataFrames for patients with and without pericardial effusion are loaded and stored as has_pericardial_effusion and none_pericardial_effusion, respectively.

The KaplanMeierFitter class is imported for you. Additionally, the pandas package is loaded as pd, and the matplotlib.pyplot module is loaded as plt.

Este exercício faz parte do curso

Survival Analysis in Python

Ver curso

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

# Fit kmf to patients with pericardial effusion
____.____(____, ____, label='has_pericardial_effusion')

# Create a plot of the survival function
surv_plot = kmf.____()
Editar e executar o código