绘制相关系数时GGally :: ggpairs绘图没有网格线

时间:2014-02-16 10:52:19

标签: r ggplot2 ggally

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')

enter image description here

1 个答案:

答案 0 :(得分:11)

结帐this related question和我的forked repo.使用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))

enter image description here