[R-gregmisc-users] SF.net SVN: r-gregmisc:[1889] trunk/gplots/R/heatmap.2.R
Brought to you by:
warnes
From: <wa...@us...> - 2014-09-17 13:53:42
|
Revision: 1889 http://sourceforge.net/p/r-gregmisc/code/1889 Author: warnes Date: 2014-09-17 13:53:34 +0000 (Wed, 17 Sep 2014) Log Message: ----------- key.title=NA was not being honored when density.info=NA. Modified Paths: -------------- trunk/gplots/R/heatmap.2.R Modified: trunk/gplots/R/heatmap.2.R =================================================================== --- trunk/gplots/R/heatmap.2.R 2014-09-16 18:11:13 UTC (rev 1888) +++ trunk/gplots/R/heatmap.2.R 2014-09-17 13:53:34 UTC (rev 1889) @@ -667,7 +667,8 @@ mtext(side=2,key.ylab, line=par("mgp")[1], padj=0.5) } else - title("Color Key") + if (is.null(key.title)) + title("Color Key") if(trace %in% c("both","column") ) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |