从`corrplot`输出奇怪

eqoofvh9  于 2023-07-31  发布在  其他
关注(0)|答案(1)|浏览(79)

此问题是来自交叉验证的migrated,因为它可以在堆栈溢出时得到回答。Migrated 6天前.
我正在使用corrplot库,这是代码:

corrplot(correlation_matrix, method = "number", 
         number.cex = 0.6,
         tl.col = "black", 
         type = "lower", 
         tl.srt = 45)

字符串
令人惊讶的是,它输出了这个奇怪的情节:

的数据
知道为什么会这样吗我直接从文档中构建相关矩阵。

9njqaruj

9njqaruj1#

我知道怎么修了。我必须指定“corrplot::”如下:

corrplot::corrplot(correlation_matrix, method = "number", 
         number.cex = 0.6,
         tl.col = "black", 
         type = "lower", 
         tl.srt = 45)

字符串
结果是:

的数据

相关问题