减少R中热图中的列大小

时间:2014-05-08 12:19:14

标签: r heatmap

enter image description here

我在R中使用热图功能得到了这个Rplot。

现在我只想减小列宽,以便我可以一目了然地看到图像。正如您所看到的,需要缩放此绘图以检查其包含的标签,因此我需要减小此绘图的列宽。这有什么解决方案吗?

请帮忙...... 更新的帖子: 以下是使用的代码

`myCol< - c(" blue"," green"," yellow"," orange","棕色""红色&#34)

 myBreaks <- c(0, 100, 350, 500, 1000, 10000,3500000)

 Heatmap<-heatmap.2(Heatmap_input, dendrogram ='row',
      Colv=FALSE, col=myCol, 
      breaks=myBreaks,
      key=FALSE, keysize=0.5, symkey=FALSE, density.info='none',
      trace='none', 
       sepwidth=0.05,
      scale="none",cexRow=0.5,cexCol=1,
      labCol = colnames(Heatmap_input),                 
      hclustfun=function(c){hclust(c, method='mcquitty')},
      lmat=rbind( c(0, 3), c(2,1), c(0,4) ), lhei=c(0.25, 4, 0.25 ))`

0 个答案:

没有答案