[R-gregmisc-users] SF.net SVN: r-gregmisc:[1948] trunk/gplots/R/plotCI.R
Brought to you by:
warnes
From: <wa...@us...> - 2015-04-23 21:23:43
|
Revision: 1948 http://sourceforge.net/p/r-gregmisc/code/1948 Author: warnes Date: 2015-04-23 21:23:36 +0000 (Thu, 23 Apr 2015) Log Message: ----------- - plotCI() was not properly respecting the 'type=' argument. This has been corrected. Modified Paths: -------------- trunk/gplots/R/plotCI.R Modified: trunk/gplots/R/plotCI.R =================================================================== --- trunk/gplots/R/plotCI.R 2015-04-23 21:18:42 UTC (rev 1947) +++ trunk/gplots/R/plotCI.R 2015-04-23 21:23:36 UTC (rev 1948) @@ -103,7 +103,7 @@ { if(invalid(labels) || labels==FALSE ) plot(x, y, ylim = ylim, xlim=xlim, col=col, - xlab=xlab, ylab=ylab, ...) + xlab=xlab, ylab=ylab, type="n", ...) else { plot(x, y, ylim = ylim, xlim=xlim, col=col, type="n", This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |