我正在使用 ggcorrplot 构建相关矩阵,但输出以我不想要的方式重新排序列。如何重新排序列?
出于本示例的目的,我将使用在 R 中找到的“mtcars”数据集。生成最终输出后,我需要对列重新排序,因为它会不断地重新排序为我不想要的格式。
注意:网站提供的代码如下: http: //www.sthda.com/english/wiki/ggplot2-quick-correlation-matrix-heatmap-r-software-and-data-visualization
library(ggcorrplot)
mydata <- mtcars
#correlation matrix
cormat <- round(cor(mydata),2)
library(reshape2)
melted_cormat <- melt(cormat)
head(melted_cormat)
library(ggplot2)
ggplot(data = melted_cormat, aes(x=Var1, y=Var2, fill=value)) +
geom_tile()
# Get upper triangle of the correlation matrix
get_upper_tri <- function(cormat){
cormat[lower.tri(cormat)]<- NA
return(cormat)
}
upper_tri <- get_upper_tri(cormat)
# Melt the correlation matrix
library(reshape2)
melted_cormat <- melt(upper_tri, na.rm = TRUE)
# Heatmap
library(ggplot2)
ggplot(data = melted_cormat, aes(Var2, Var1, fill = value))+
geom_tile(color = "white")+
scale_fill_gradient2(low = "blue", high = "red", mid = "white",
midpoint = 0, limit = c(-1,1), space = "Lab",
name="Pearson\nCorrelation") +
theme_minimal()+
theme(axis.text.x = element_text(angle = 45, vjust = 1,
size = 12, hjust = 1))+
coord_fixed()
这是我想要的相关矩阵,但我需要将列重新排序为与所示不同的顺序。
任何帮助都会很棒。感谢大家!