我计算了几个非平方相关矩阵,现在我想绘制它们。我找到了几个像corrplot
和corrgram
这样的软件包,但我只能使用方形矩阵。非方阵的正确参数是什么?
到目前为止我的尝试:
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/
答案 0 :(得分:1)
尝试使用is.corr
变量:
library(corrplot)
corrplot(xoxo, method="number", is.corr=FALSE)