假设我想绘制这个:
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())