我有一个包含时间、状态( 1=death, 0 = censored)、treatment =1,2 的数据集。
我创建了我的生存对象 km_2,我想使用 autoplot() 绘制 Kaplan-Meijer 图。我不知道我的错误是什么,但设置属性(例如 legendLabs)不会对基本的 KM 图进行任何更改。
km_2 <- survfit(Surv(time, status)~treatment, data=prostate)
library(ggplot2)
library(ggfortify)
autoplot(km_2,
alpha=0.7, #transparency of CIs
shape= 10, #shape used to incdicaed censored obs
xlab= 'month', ylab='% survived',
title = 'KM- plot to compare tr1, tr 2',
legendLabs= c('tr1','tr2'),
pval=T,
plotTable= T
)