在R中的corrplot之后提取行/列顺序

时间:2017-02-22 16:16:21

标签: r correlation r-corrplot

我正在使用$isoWeek,我所遵循的顺序是通过First Principal Component。例如:

{{1}}

enter image description here

如何按上面使用的顺序提取列(或行)?

提前谢谢。

1 个答案:

答案 0 :(得分:1)

将图存储在变量中,稍后可以访问

b = corrplot(M, method="color", order="FPC")
#Then access b

rownames(b)
 #[1] "cyl"  "disp" "wt"   "hp"   "carb" "qsec" "gear" "am"   "drat" "vs"   "mpg"