单元格之间的ggplot tile线

时间:2015-09-19 07:15:30

标签: r ggplot2 heatmap

我正在使用ggplot和geom_tile来形成热图。我希望在细胞之间插入一些微弱的线条。

例如:

我的ggplot geom_tile热图:

library(ggplot2)
library(reshape2)
data("iris")
x = melt(cor(iris[,1:4]))
ggplot(data=x,aes(Var1,Var2,fill=value)) + geom_tile() # No line between the cells

我想要的(来自R中的d3heatmap包)

library(d3heatmap)
data("iris")
x = cor(iris[,1:4])
d3heatmap(cor(iris[,1:4]),Rowv = F,Colv = F) #There is a faint line between the cells

(抱歉,不能发布任何图片) 谢谢!

1 个答案:

答案 0 :(得分:7)

只需将color = "gray"添加到您的geom_tile

即可
library(ggplot2)
library(reshape2)
data("iris")
x = melt(cor(iris[,1:4]))
ggplot(data=x,aes(Var1,Var2,fill=value)) + 
  geom_tile(color = "gray")

将在图块之间用线条给出这个数字:enter image description here

您可以使用size来更大或更小的线条,和/或使用color = white