我想在下面的图中以白色获取直方图或条形线。这主要是为了节省墨水。

library(GGally)
library(ggplot2)
data(tips, package = "reshape")
pm <- ggpairs(tips[,1:3])

我试过了
pm + theme(panel.background = element_rect(fill = "white"),
plot.background = element_rect(fill = "white"),rect= element_rect(fill="white"))

但无法达到直方图填充。

有什么帮助吗?

最佳答案

这应该做你想做的:

ggpairs(tips[,1:3], params = c(fill = "white", color = "black")) +
  theme_bw()

r - ggpairs 用白色填充直方图-LMLPHP

关于r - ggpairs 用白色填充直方图,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33735492/

10-12 16:40