是否可以使用
ggsurvfit::ggsurvfit()
生成对数减对数图?
这是我想要制作的示例:
library(ggsurvfit)
temp <- survfit2(Surv(time, status) ~ adhere, data = df_colon)
plot(temp, fun = \(x) log(-log(x)))
但我不想使用
plot()
,而是想使用ggsurvfit::ggsurvfit()
。我尝试了以下
temp$surv <- log(-log(temp$surv))
ggsurvfit(temp)
但它在情节开始时表现得很奇怪,因为生存曲线在时间 0 时为 1。