The event indicator is defined as:
|
full_df$status = ifelse(full_df$time_minutes < 25, TRUE, FALSE) |
and the KM plot of the survival function labels the y-axis:
|
ylab = "Probability of failing to create fix", |
status is "finished/stopped before the 25-min cap", y axis says "created fix". But some people stopped before 25 minutes with incorrect fixes, right? Not sure if it's because you're only partway through, but didn't want the inconsistency to be missed down the line.
The event indicator is defined as:
patchwork_analysis/patchwork_analysis.Rmd
Line 92 in 6ef8684
and the KM plot of the survival function labels the y-axis:
patchwork_analysis/patchwork_analysis.Rmd
Line 410 in 6ef8684
status is "finished/stopped before the 25-min cap", y axis says "created fix". But some people stopped before 25 minutes with incorrect fixes, right? Not sure if it's because you're only partway through, but didn't want the inconsistency to be missed down the line.