我正在使用arrange_ggsurvplots 一起绘制几个KM 图,但我无法自定义整体标题。知道我该怎么做吗?这是我的代码和结果的示例。
library(survival)
library(survminer)
fig1 <- ggsurvplot(survfit(Surv(time, status) ~ 1, data = lung))
fig2 <- ggsurvplot(survfit(Surv(time, status) ~ sex, data = lung))
fig <- arrange_ggsurvplots(list(fig1, fig2), ncol = 2, title = "this title should be bold and colored", font.title=c(12))