[R-gregmisc-users] SF.net SVN: r-gregmisc:[1362] trunk/gplots/R/heatmap.2.R
Brought to you by:
warnes
From: <wa...@us...> - 2009-10-22 20:31:58
|
Revision: 1362 http://r-gregmisc.svn.sourceforge.net/r-gregmisc/?rev=1362&view=rev Author: warnes Date: 2009-10-22 20:31:50 +0000 (Thu, 22 Oct 2009) Log Message: ----------- Fix transposed display of data (but not labels) in heatmap.2 when symm=TRUE Modified Paths: -------------- trunk/gplots/R/heatmap.2.R Modified: trunk/gplots/R/heatmap.2.R =================================================================== --- trunk/gplots/R/heatmap.2.R 2009-10-12 13:26:35 UTC (rev 1361) +++ trunk/gplots/R/heatmap.2.R 2009-10-22 20:31:50 UTC (rev 1362) @@ -354,11 +354,11 @@ } ## draw the main carpet par(mar = c(margins[1], 0, 0, margins[2])) - if(!symm || scale != "none") - { - x <- t(x) - cellnote <- t(cellnote) - } + #if(scale != "none" || !symm) + # { + # x <- t(x) + # cellnote <- t(cellnote) + # } if(revC) { ## x columns reversed iy <- nr:1 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |