我正在尝试使用R语言绘制热图。
在绘制热图图表之后,我发现我的热图不适合解释,因为颜色键的范围没有很好地调整。
如下所示,与我的数据分布相比,颜色键范围非常长(它们介于0到4之间)。因此,热图中的所有颜色都是绿色。
如何解决这个问题?
以下是我的代码。 (我试图搜索解决方案,但我找不到合适的主题。)
library(gplots)
matrix <- as.matrix(read.delim("bladder",header=FALSE))
hclustfunc <- function(x) hclust(x, method="complete")
distfunc <- function(x) dist(x, method="euclidean")
cl.col <- hclustfunc(distfunc(t(matrix)))
gr.col <- cutree(cl.col, 4)
heatmap.2(as.matrix(matrix),col=greenred(75),dendrogram=c("col"),trace="none",Rowv=FALSE,margins = c(8,16),cexRow=0.60,cexCol=0.8)
答案 0 :(得分:2)
请确保在以下示例中将n
设置为正确的长度:
my_palette <- colorRampPalette(c("red", "blue", "green"))(n = 100)
heatmap.2(as.matrix(matrix), col=my_palette,
breaks=colors, density.info="none", trace="none",
dendrogram=c("row"), symm=F,symkey=F,symbreaks=T, scale="none")