本文介绍了如何在简单矩阵上使用corrplot的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个简单的8 x 8矩阵

I have a simple 8 by 8 matrix

M <- matrix(rnorm(64), nrow=8, ncol=8) 

我应该如何将其转换为使用library(corrplot)进行绘制?如果不进行转换,则错误为:

How should I transform it to plot it with library(corrplot)? Without transformation the error is:

corrplot.mixed(M)

推荐答案

仅表明它不是相关矩阵:

Just indicate that it is not a correlation matrix:

library(corrplot)
corrplot(M, is.corr = FALSE, method = "square")

这篇关于如何在简单矩阵上使用corrplot的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-25 14:41