gpt4 book ai didi

R corrplot 颜色范围

转载 作者:行者123 更新时间:2023-12-01 19:35:22 29 4
gpt4 key购买 nike

我在 R 中使用 corrplot 来绘制相关系数矩阵,但我的相关范围仅从 0.95 到 1.00,而且我不知道如何设置调色板的下限和上限。

corrplot(segCorr, order = "hclust", tl.cex = .6, 
cl.lim = c(0.95, 1), col=colorRampPalette(c("blue","white","red"))(10))

尽管所有设置都是一种颜色,但我需要在细节上看到这些细微的差异。

最佳答案

为了避免花太多时间设置好的调色板,我有时使用的“hack”是设置 is.corr = FALSE .然后我们从

with(mtcars, corrplot(cor(cbind(disp, hp, cyl)), cl.lim = c(0.7, 1)))

enter image description here

到...
with(mtcars, corrplot(cor(cbind(disp, hp, cyl)), cl.lim = c(0.7, 1), is.corr = FALSE))

enter image description here

关于R corrplot 颜色范围,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40451949/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com