How can I add censor mark using the ggsurvfit package in a weighted survival analysis? I've run into the following bug:
Error in
ggplot2::geom_point()
: ! Problem while computing layer data. i Error occurred in the 2nd layer. Caused by error intidyr::uncount()
: ! Can't convert fromweights
double to integer due to loss of precision.
Code to reproduce the error:
library(ggsurvfit)
library(tidyverse)
df_lung%>%
mutate(random_weight = rexp(1))%>%
survfit2(Surv(time, status) ~ sex, data = ., weight = random_weight) %>%
ggsurvfit()+
add_censor_mark()