0

是否可以使用生存包从 R 中的另一个对象中减去一个 survdiff 对象?

我想绘制一个图,显示一条生存曲线高于/低于另一条的间隔以及多少。

4

1 回答 1

0

survA使用和survB作为survdiff-objects的一种可能解决方案:

interval <- 0:2500
# choose a different time interval if you want

sumA <- summary(survA, time = interval)
sumB <- summary(survB, time = interval)

both <- data.frame(time = interval, A = sumA$surv, B = sumB$surv)

both$diff <- both$B - both$A
# or both$diff <- both$A - both$B

plot(x = both$time, y = both$diff, type = "line")
于 2013-02-22T14:39:20.247 回答