在R中使用预设主题:更改参数的可能性?

  • 本文关键字:参数 可能性 r themes
  • 更新时间 :
  • 英文 :


假设我想绘制这个:

ggplot(d, aes(x=rownames(d),group=1)) +       
geom_line(aes(y = y2, color = "y2")) +
theme(
plot.title = element_text(color="gray50"),
legend.title=element_blank())

通过使用theme_minimal()。我注意到如果我用theme_minimal(替换主题(它将不起作用)(告诉我有未使用的参数)。是否有一种快速的方法来使用当前theme()中未定义的预定义主题的参数?

您可以使用theme_minimal这样的主题,然后使用theme修改其参数,因此

ggplot(d, aes(x=rownames(d),group=1)) +       
geom_line(aes(y = y2, color = "y2")) +
theme_minimal() +
theme(
plot.title = element_text(color="gray50"),
legend.title=element_blank())

相关内容

  • 没有找到相关文章

最新更新