使用scale_colour_gradient自定义ggplot热图中的颜色

dan*_*dan 1 r heatmap ggplot2

我正在尝试heatmap使用ggplot2和绘制皮尔逊成对相关性scale_colour_gradient

这是我的示例数据:

library(dplyr)
library(ggplot2)
set.seed(1)

pairs.mat <- t(combn(1:5,2))
df <- data.frame(sample1=pairs.mat[,1],sample2=pairs.mat[,2]) %>% dplyr::mutate(association=runif(10,0.85,1))
Run Code Online (Sandbox Code Playgroud)

这是ggplot2我正在尝试的代码:

heatmap.ggplot <- ggplot(df,aes(sample1,sample2,fill=association))+geom_tile(color="white")+
  scale_colour_gradient(low="gray",high="red",limit=c(min(df$association),1),space="Lab",guide="colourbar")+theme_minimal()+
  theme(axis.title.x=element_blank(),axis.title.y=element_blank(),axis.text.x=element_text(angle=45,vjust=1,size=12,hjust=1))+coord_fixed()+coord_flip()+labs(colors="Cor")
Run Code Online (Sandbox Code Playgroud)

其产生: 在此输入图像描述

我的问题是:

  1. 我指定了范围low="gray"high="red"但我得到了蓝色范围内的元素。我该如何解决这个问题?
  2. 我似乎无法使用labs(colors="Cor"). 对此有什么想法吗?

谢谢

mar*_*kus 5

你需要scale_fill_gradient

ggplot(df, aes(sample1, sample2, fill = association)) +
  geom_tile(color = "white") +
  scale_fill_gradient(
    name = "Cor", # changes legend title
    low = "gray",
    high = "red",
    limit = c(min(df$association), 1),
    space = "Lab",
    guide = "colourbar"
  ) + theme_minimal() +
  theme(
    axis.title.x = element_blank(),
    axis.title.y = element_blank(),
    axis.text.x = element_text(
      angle = 45,
      vjust = 1,
      size = 12,
      hjust = 1
    )
  ) + 
coord_fixed() + 
coord_flip() 
Run Code Online (Sandbox Code Playgroud)

在此输入图像描述