I would like to calculate the absolute difference in the probability of an event occurring within a specified duration of follow-up from a Kaplan-Meier plot. How can I achieve this using ggsurvfit?" Below is an example code:
library(ggsurvfit)
library(tidyverse)
survfit2(Surv(time, status) ~ sex, data = df_lung) %>%
ggsurvfit()+
add_confidence_interval() +
add_risktable()
Not sure how exactly you want the difference displayed, but here's an example of calculating the difference and adding it to the plot region.
Created on 2024-02-08 with reprex v2.1.0