LoslegenKostenlos loslegen

Capstone: Comparing survival curves

We saw from the last exercise that performance scores do have an effect on the survival probability. Now, let's take a look at the survival curve of all individuals using the Kaplan-Meier estimate and compare it to the curve of a Cox model that takes performance into account. Note that for Cox models, you can just enter the survfit() output into ggsurvplot() instead of creating the needed data frame yourself and plugging it into ggsurvplot_df().

Diese Übung ist Teil des Kurses

Survival Analysis in R

Kurs anzeigen

Interaktive Übung

Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.

# Compute Kaplan-Meier curve
km <- ___(___ ~ ___, data = ___)

# Compute Cox model
cxmod <- ___(___, data = ___)
Code bearbeiten und ausführen