Revision: 1732
http://sourceforge.net/p/r-gregmisc/code/1732
Author: warnes
Date: 2013-10-11 22:09:09 +0000 (Fri, 11 Oct 2013)
Log Message:
-----------
Allow standard S3 method handling to locate the correct function.
Modified Paths:
--------------
trunk/gplots/R/overplot.R
Modified: trunk/gplots/R/overplot.R
===================================================================
--- trunk/gplots/R/overplot.R 2013-10-11 22:06:20 UTC (rev 1731)
+++ trunk/gplots/R/overplot.R 2013-10-11 22:09:09 UTC (rev 1732)
@@ -4,10 +4,10 @@
{
m <- match.call()
- m[[1]] <- graphics:::plot.formula
+ m[[1]] <- as.name("plot")
eval(m, parent.frame() )
- m[[1]] <- gplots:::lowess.formula
+ m[[1]] <- as.name("lowess")
tmp <- eval(m, parent.frame() )
lines( tmp, col=col, lwd=2, lty=lty )
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|