在survminer生存图上添加一行

时间:2018-10-15 08:58:19

标签: r ggplot2 survival

我的生存曲线如下

require("survival")
library(survminer)
fit <- survfit(Surv(time, status) ~ 1, data = lung)
ggsurvplot(fit,  palette = "jco",risk.table = TRUE)

我想在图中添加x time=c(0,100, 200, 300, 500, 750)和y surv=c(1, 0.99, 0.95, 0.92, 0.88, 0.82)的非直线

我该怎么做?

1 个答案:

答案 0 :(得分:0)

我认为您正在寻找geom_curve()或geom_segment()参数-您必须指定曲线的类型,但这肯定是向ggplot添加自定义线的一种选择。

更多内容:https://ggplot2.tidyverse.org/reference/geom_segment.html