没有密度图的ggplot2 / GGally中的Scattermatrix

时间:2016-04-20 10:57:32

标签: r ggplot2 ggally

我用ggplot2扩展GGally创建了一个scattermatrix,代码如下

  ggscatmat(dat2, columns = 2:6, color="car", alpha=0.8) +
  ggtitle("Korrelation") + 
  theme(axis.text.x = element_text(angle=-40, vjust=1, hjust=0, size=10))

现在我的问题是,在这种情况下,我并不需要密度线图或相关系数。我只想要矩阵中的散点图。有没有办法去"删除"其他方面?我可以在文档中找到任何内容。

请原谅我的英语不好,谢谢你的任何建议或帮助!

Scattermatrix with ggscatmat {GGally}

编辑:我发现ggpairs还没有完美的解决方案:

ggpairs(dat2, columns = 2:6, mapping= aes(color=car), 
        upper = "blank",diag = "blank") +
  theme(axis.text.x = element_text(angle=-40, vjust=1, hjust=0, size=10))

但是现在已经没有传说了,看起来情节的两个标签还没有完全装满:enter image description here

2 个答案:

答案 0 :(得分:4)

您可以通过弄乱gtable

手动删除部分地块
 removePanels <- function(plot) {

         g <-  ggplotGrob(plot)

         # get panels to remove: upper + diagonal
         ids <- grep("panel", g$layout$name)
         cols <- sqrt(diff(range(ids)) +1)
         remove <- matrix(ids, ncol=cols)
         remove <- remove[upper.tri(remove, diag=TRUE)]

         # remove certain axis
         yax <- grep("axis-l", g$layout$name)[1] # first
         xax <- tail(grep("axis-b", g$layout$name), 1) #last

         # remove cetain strips
        ystrip <- grep("strip-right", g$layout$name)[1]
        xstrip <- tail(grep("strip-top", g$layout$name), 1)

        # remove grobs
        g$grobs[c(remove, xax, yax, ystrip, xstrip)] <- NULL
        g$layout <- g$layout[-c(remove, xax, yax, ystrip, xstrip),]
        g
      }

# draw
library(GGally)
library(ggplot2)
library(grid)

p <- ggscatmat(iris, columns = 1:4, color="Species", alpha=0.8) +
          theme(axis.text.x = element_text(angle=-40, vjust=1, hjust=0, size=10))

grid.newpage()      
grid.draw(removePanels(p))

答案 1 :(得分:3)

official documentation之后,您可以将ggpairs的元素设置为空白。在您的情况下,您有兴趣更改 diag的值 diag = "blank" ,如下例所示。

实施例

mtcars 数据的示例中,您可以执行以下操作:

data("mtcars")
require(GGally)
ggpairs(data = mtcars[3:5], diag = "blank")

结果

代码将生成没有对角线图的所需图表: No diagonal