我正在尝试使用heatmap.2
但我没有得到单元格边框来制作热图。如果我设置了参数sepwidth
但sepcolor
它不起作用,我必须包含colsep
androwsep
参数但仍然这样做,一些单元格边框没有绘制,有什么想法吗?
heatmap.2(as.matrix(df), key=F, trace="none", ColSideColors=colorside,
cexRow=0.6, breaks=bk1, col=colors2,
lmat=rbind(c(0,0), c(0,4), c(0,1), c(3,2), c(0,0)),
lhei=c(0.4,0.3,0.05,0.4,0.6),
sepwidth=c(0.01, 0.01), sepcolor="black",
colsep=1:length(df), rowsep=1:length(df))