我在surv_rate中具有必要列的数据。这就是我正在运行的内容,它基于以下示例:http://www.sthda.com/english/rpkgs/survminer/reference/ggsurvplot.html
fit2 <- survfit(Surv(YearsToStatus, VitalStatus) ~ PR_statusIndex + HER2_statusIndex + ER_statusIndex,
data = surv_rate)
ggsurv <- ggsurvplot(fit2, data = surv_rate, ggtheme = theme_bw)
我收到此错误:
Error: Don't know how to add ggtheme to a plot
我尝试这样做的原因是ggsurv
图中没有显示网格线。
预先感谢您可以提供的任何帮助,此外,我对于R还是陌生的。
答案 0 :(得分:1)
主题必须像在 ggplot2 中一样编写为函数,因此主题名称必须以一对括号结尾。
ggtheme = theme_bw()