如何规范ggparis情节

时间:2017-05-12 08:12:45

标签: r ggally

我使用ggpairs绘制了一个情节(如下所示),但它看起来很混乱。至于解决它,我已经阅读了文档,但这没有多大帮助。

[1]

如何减小系数的字体大小?

其次,我想知道如何以更易读的方式改进这个情节。也许可以通过调整散点图或标签来完成? 如果有人有想法,请让我知道该怎么做。

这是我为剧情写的代码。

ggpairs(wine_subset[sample.int(nrow(wine_subset), 1000), ], 
        upper = list(wrap(ggally_cor, size = 2))) 

1 个答案:

答案 0 :(得分:1)

最简单的解决方案是使保存文件的高度和宽度更大。这里有些例子。请看看结果如何看起来不同。

  library(GGally)
  library(data.table)
  sample_data <- data.table(a = rnorm(1000))
  for(i in 2:12) sample_data[, letters[i] := rnorm(100) ]
  head(sample_data)
  g <- ggpairs(sample_data, 
          upper = list(wrap(ggally_cor, size = 2))) 
  ggsave("temp1.pdf", g, width = 6, height = 6)
  ggsave("temp2.pdf", g, width = 9, height = 9)
  ggsave("temp3.pdf", g, width = 12, height = 12)
  ggsave("temp1.png", g, width = 6, height = 6)
  ggsave("temp2.png", g, width = 9, height = 9)
  ggsave("temp3.png", g, width = 12, height = 12)