传说位置与对情节r

问题描述 投票:1回答:1

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

虽然我想将所有轴的图例放在图的底部和左侧,但效果很好。默认情况下,正如您在此示例中看到的那样,它们每两个绘图都会更改一侧:

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

如果有人有ggplot2 R包的答案,那将是完美的。

r plot
1个回答
1
投票

使用GGally

library(GGally) ggpairs(data=iris)

enter image description here

或者只是连续的列

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

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.