首先,我制作了一个 CIF 图:
cmprsk:::plot.cuminc(forplot,ylim=c(0, 0.04),curvlab="CIF",main="Curves for Failure Hematologic P=(0:1) ")
然后我添加一条 1 公里的曲线
fitcs1=survfit(Surv(hem_free, hem_censor2)~1)
lines(fitcs1,fun='event',lty=2:3,lwd=0.5,mark.time=FALSE,legend="e") #"event" plots cumulative events (f(y) = 1-y)
我想知道为什么 1-KM 曲线没有图例
我尝试使用legend("topleft",c("1-KM curve"),lty=2:3,lwd=0.5)
,但无法删除第一个情节中的标签。
如果您能帮助我,我将非常合适!