非平方相关矩阵与显着星的相关图

时间:2017-04-28 14:11:46

标签: r matrix plot correlation r-corrplot

我计算了几个非平方相关矩阵,现在我想绘制它们。我找到了几个像corrplotcorrgram这样的软件包,但我只能使用方形矩阵。非方阵的正确参数是什么?

到目前为止我的尝试:

library(psych)
x <- psych::corr.test(P19[2:ncol(P19)], motivation_on[2:ncol(motivation_on)], method = "spearman")


xoxo <- as.data.frame(x[1])
library(corrplot)
corrplot(xoxo, method = "number")

目标是在这篇文章中有一个包含重要明星的情节: https://www.r-bloggers.com/correlograms-are-correlicious/

PS:我的相关矩阵看起来像这样,请注意我没有关联数据帧中的变量来避免巨大的矩阵: enter image description here

1 个答案:

答案 0 :(得分:1)

尝试使用is.corr变量:

library(corrplot)

corrplot(xoxo, method="number", is.corr=FALSE)