Revision: 1214
http://r-gregmisc.svn.sourceforge.net/r-gregmisc/?rev=1214&view=rev
Author: warnes
Date: 2007-11-02 11:18:00 -0700 (Fri, 02 Nov 2007)
Log Message:
-----------
Update plot.lm2 to match changes made to bandplot
Modified Paths:
--------------
trunk/gplots/R/plot.lm.R
Modified: trunk/gplots/R/plot.lm.R
===================================================================
--- trunk/gplots/R/plot.lm.R 2007-11-01 20:20:10 UTC (rev 1213)
+++ trunk/gplots/R/plot.lm.R 2007-11-02 18:18:00 UTC (rev 1214)
@@ -74,7 +74,7 @@
ylim = ylim, type = "n", ...)
panel(yh, r, ...)
if(rug) rug(yh) ## GRW 2001-06-08
- if(band) bandplot(yh,r,add=TRUE,lty=3) ## GRW 2001-06-08
+ if(band) bandplot(yh,r,add=TRUE) ## GRW 2001-06-08
if (one.fig)
title(sub = sub.caption, ...)
mtext(caption[1], 3, 0.25)
@@ -107,7 +107,7 @@
abline(h=mean(sqrtabsr),lty = 3, col = "gray")
if(rug) rug(yh) ## GRW 2001-06-08
- if(band) bandplot(yhn0,sqrtabsr,add=TRUE,lty=3) ## GRW 2001-06-08
+ if(band) bandplot(yhn0,sqrtabsr,add=TRUE) ## GRW 2001-06-08
if (one.fig)
title(sub = sub.caption, ...)
@@ -141,7 +141,7 @@
xlab=names(data)[i], ylab="Residuals", type="n")
panel( data[,i], r, ... )
if(rug) rug(data[,i])
- if(band) bandplot(data[,i],r,add=TRUE,lty=3)
+ if(band) bandplot(data[,i],r,add=TRUE)
abline(h=0,lty = 3, col = "gray")
}
)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|