标签: r graphics correlation
我有以下数据集,我试图显示其列间相关性
我正在尝试使用corrplot查找我的数据这样的输出,但这不能为我的数据提供结果:
答案 0 :(得分:2)
您可以使用corrplot()包中的corrplot函数来制作该图。
corrplot()
corrplot
library(corrplot) mt_cor <- cor(mtcars) # builds correlation matrix corrplot(mt_cor, type = "upper") # without this, it would mirror about diagonal