从有序相关矩阵中提取订单列表:R

时间:2017-05-03 22:27:44

标签: r r-corrplot

我创建了一个相关矩阵,并使用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功能

的结果

plot

有没有办法从这个结果中获取订单清单,即(4,5,1,3,2)

1 个答案:

答案 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"