我正在使用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
(抱歉,不能发布任何图片) 谢谢!