Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在用 ggplot2 中的 theme_bw() 绘制我的所有图表,现在我想将相同(或相似)的主题应用于 GGally 的 ggpairs 图。我尝试过这种方式,但这似乎没有效果:
p <- ggpairs(vars, columns=1:ncol(vars), lower=list(params=c(alpha = 0.5, theme(panel.background = element_blank()))))
有没有办法将 ggplot2 主题应用于 ggpairs 情节?
我不确定我是否很好地理解了你的问题。您是否已经尝试过以下简单的解决方案?我以iris数据集为例。此解决方案仅适用于非数据元素(不适用于 geoms)。
ggpairs(iris, mapping = aes(color = Species)) + theme_bw()