当绘制相关系数时,GGally :: ggpairs不绘制网格线

GGally::ggpairs绘制出如下图所示的漂亮图形。 我唯一需要改进的地方就是删除所有绘图上部的网格线,相关系数在哪里。 也可能在每个上图上画一个矩形。

library("GGally")
data(iris)
ggpairs(iris[, 1:4], lower=list(continuous="smooth", params=c(colour="blue")),
  diag=list(continuous="bar", params=c(colour="blue")), 
  upper=list(params=list(corSize=6)), axisLabels='show')

在这里输入图像描述


看看这个相关的问题和我的分叉回购。 使用assignInNamespace来修改ggally_cor函数,如上述问题所示。

唯一需要做的是修改theme调用:

  theme(legend.position = "none", 
        panel.grid.major = element_blank(), 
        axis.ticks = element_blank(), 
        panel.border = element_rect(linetype = "dashed", colour = "black", fill = NA))

在这里输入图像描述

链接地址: http://www.djcxy.com/p/30857.html

上一篇: GGally::ggpairs plot without gridlines when plotting correlation coefficient

下一篇: Add or override aes in the existing mapping object