corrplot 中的重要性值

significance values in corrplot

我在 corrplot 上找到了这个情节:

我在那里看到了什么?相关性根据 {-1,1} 着色,并应用显着性值,用十字表示。 这些十字架说明了什么?它们位于违反重要性值的条目中吗?

如果您仔细阅读文档,它会说:

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)

此相关图可视化变量之间的相关性,X 根据您想要的阈值放置在非显着相关性之上,sig.level , 映射在 corrplot 函数中。