何使用Survminer包优雅的绘制生存曲线?
# 颜色设置:palettes. ggsurvplot(fit, data = lung, surv.median.line = "hv",legend.title = "sex", legend.labs = c("Male", "Female"), pval = TRUE,conf.int = TRUE,risk.table = TRUE, tables.height = 0.2,tables.theme =theme_cleantable(), palette = c("#E7B800", "#2E9FDF"))
# 同时改变font size, style and colorggsurvplot(fit, data = lung, main = "Survival curve", font.main = c(16, "bold", "blue"), font.x = c(14, "bold.italic", "red"), font.y = c(14, "bold.italic", "grey"), font.tickslab = c(12, "plain", "darkgreen"))
#接下来,我们将讲解如何在一张图片上绘制多个生存曲线,这里使用R内置数据colon(自变量更多)
#查看colon数据View(colon)
#我们选择自变量sex(性别)+ rx(治疗方式)+adhere(邻近器官)
#拟合多个生存曲线fit3 <- survfit( Surv(time, status) ~ sex + rx + adhere,data = colon )# 画多个生存曲线 ggsurvplot(fit3, data = colon, fun = "cumhaz", conf.int = TRUE, ggtheme = theme_bw())
#以上图形可以看出,图形复杂且杂乱,因此需要分割图片
# 分割开多个生存曲线 ggsurv<-ggsurvplot(fit3, data = colon, fun = "cumhaz", conf.int = TRUE, risk.table = TRUE, risk.table.col="strata", ggtheme = theme_bw())curv_facet <- ggsurv$plot + facet_grid(rx ~ adhere)curv_facet
图片新闻
最新活动更多
-
即日-1.20限时下载>>> 爱德克(IDEC)设备及工业现场安全解决方案
-
即日-1.31立即参与>>> 【限时免费下载】村田白皮书
-
2月28日火热报名中>> 【免费试用】东集技术年终福利——免费试用活动
-
4日10日立即报名>> OFweek 2025(第十四届)中国机器人产业大会
-
限时免费下载立即下载 >>> 2024“机器人+”行业应用创新发展蓝皮书
-
7.30-8.1火热报名中>> 全数会2025(第六届)机器人及智能工厂展
推荐专题
发表评论
请输入评论内容...
请输入评论/评论长度6~500个字
暂无评论
暂无评论