传说位置与对情节r

时间:2016-06-20 13:20:07

标签: r plot

我想使用函数pairs()绘制几个变量及其各自的相关系数。

虽然我想把所有轴的传说都放在情节的左下方,但效果很好。 默认情况下,正如您在此示例中所看到的那样,它们每两个图都会改变一边:

pairs(~Sepal.Length+Sepal.Width+Petal.Length+Petal.Width, data=iris)

如果有人有ggplot2 R套餐的答案,那就完美了。

1 个答案:

答案 0 :(得分:1)

使用GGally

library(GGally) ggpairs(data=iris)

enter image description here

或者只是连续的列

ggpairs(data = iris[, 1:4])

enter image description here