It has been a long time since I last performed a survival analysis, and I have a basic question about it. I have three cohorts, each with a different median follow-up time value that I have calculated using the reverse Kaplan-Meier estimator. The R code I used is:
install.packages("prodlim")
library(prodlim)
quantile(prodlim(Hist(FOLLOW_UP_TIME, event=EXITUS)~1, data= COHORT1, reverse=T))
quantile(prodlim(Hist(FOLLOW_UP_TIME, event=EXITUS)~1, data= COHORT2, reverse=T))
quantile(prodlim(Hist(FOLLOW_UP_TIME, event=EXITUS)~1, data= COHORT3, reverse=T))
The median follow-up times are 100 (70-115), 60 (45-80), and 30 (15-45), respectively. My question is, which maximum time should I use in the plots, and at which time should I give the several survival and cumulative incidence probabilities?
Can anyone help me?
Thank you very much.
EI_Stats