如何将绘图范围更改为从 0 到 1,因为相关矩阵始终为正。
脚本:
require(RColorBrewer)
library(corrplot)
set.seed(123)
data <- matrix(runif(100, min = 0, max = 1), nrow = 10)
df <- as.data.frame(data)
correlation_matrix <- cor(df)
correlation_matrix <- (correlation_matrix + 1) / 2
corrplot(correlation_matrix, method="circle", col = rep(rev(brewer.pal(n=8, name="RdYlBu")), 2))