我创建了一个相关矩阵,并使用corrplot
函数将其可视化,并带有以下代码
temp<-matrix(rexp(25, rate=.1), ncol=5)
tempCor<-cor(temp)
tempCor <- data.frame(tempCor)
names(tempCor) <- c(1:5)
corrplot(t(tempCor),method="pie",order="AOE")
以下是corrplot
功能
有没有办法从这个结果中获取订单清单,即(4,5,1,3,2)
?
答案 0 :(得分:1)
试试这个:
library(corrplot)
set.seed(1234)
temp <- matrix(rexp(25, rate=.1), ncol=5)
tempCor <- cor(temp)
tempCor <- data.frame(tempCor)
names(tempCor) <- c(1:5)
out <- corrplot(t(tempCor),method="pie",order="AOE")
dimnames(out)
以下是您要找的内容:
[[1]]
[1] "5" "1" "3" "4" "2"
[[2]]
[1] "1" "2" "3" "4" "5"