I have a simple 8 by 8 matrix
M <- matrix(rnorm(64), nrow=8, ncol=8)
How do I convert it to build it using library(corrplot)? No conversion error
corrplot.mixed(M)
The matrix is not in [-1, 1]!
which, I think, would suggest that the matrix should be [-1, 1]?
source
share