简体   繁体   English

Corrplot中的有效值

[英]significance values in corrplot

I've found this plot on corrplot 我在Corrplot上找到了这个情节 更正 :

What do I see there? 我在那看到什么? The correlations are coloured according to {-1,1} and significance values are applied, represented by a cross. 根据{-1,1}对相关进行着色,并应用有效值(由叉号表示)。 What do these crosses tell? 这些十字架告诉我们什么? Are they located in entries which violate the significance value? 它们是否位于违反重要性值的条目中?

If you read the documentation carefully it says: 如果您仔细阅读了文档,它会显示:

Combining correlogram with the significance test 将相关图与显着性检验相结合
res1 <- cor.mtest(mtcars, conf.level = .95)
res2 <- cor.mtest(mtcars, conf.level = .99)
## specialized the insignificant value according to the significant level ##根据有效级别专门化微不足道的值
corrplot(M, p.mat = res1$p, sig.level = .2)

This correlation plot visualizes the correlations between your variables, and the X 's are placed on top of non-significant correlations based on your desired threshold, sig.level , mapped in the corrplot function. 此相关图可直观显示变量之间的相关性, X会根据在corrplot函数中映射的所需阈值sig.level放置在非重要相关性的corrplot

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM