我正在尝试在pheatmap
中的R
产生的热图内的所需坐标处插入垂直和水平线。
mat <- matrix(rnorm(200*200),200,200)
pheatmap(mat,treeheight_row = 0, treeheight_col = 0,
col= colorRampPalette(c("gray", "white", "lightcoral"))((50)))
grid.lines(x=c(50,100,150),y=c(50,100,150))
我想在y = c(50,100,150)
插入3条水平线,在x = c(50,100,150)
插入3条垂直线。以这种方式使用“ grid.lines”(?)没有帮助。