`corrplot` 的输出结果奇怪。

huangapple go评论65阅读模式
英文:

Weird output from `corrplot`

问题

我正在使用corrplot库,并且这是代码:

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

出奇地,它输出了这个奇怪的图:

`corrplot` 的输出结果奇怪。

有任何想法为什么会发生这种情况吗?我直接根据文档构建了相关矩阵。

英文:

I am working with corrplot library and this is the code:

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

Surprisingly it outputs this strange plot:
`corrplot` 的输出结果奇怪。

Any idea why this happens? I build the correlation matrix directly looking from the documentation.

答案1

得分: 2

我找到了如何修复它的方法。我必须如下指定 "corrplot::":

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

结果如下:
`corrplot` 的输出结果奇怪。

英文:

I found out how to fix it. I have to specify "corrplot::" as follows:

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

And the result is:
`corrplot` 的输出结果奇怪。

huangapple
  • 本文由 发表于 2023年7月24日 18:17:12
  • 转载请务必保留本文链接:https://go.coder-hub.com/76754780.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定