更改ggsurvplot上的主题-错误:不知道如何将ggtheme添加到绘图中

时间:2018-07-12 21:31:23

标签: r ggplot2

我在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还是陌生的。

1 个答案:

答案 0 :(得分:1)

主题必须像在 ggplot2 中一样编写为函数,因此主题名称必须以一对括号结尾。

ggtheme = theme_bw()