[R-gregmisc-commits] r2104 - pkg/gplots/man

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Fri Mar 25 18:27:01 CET 2016


Author: warnes
Date: 2016-03-25 18:27:00 +0100 (Fri, 25 Mar 2016)
New Revision: 2104

Modified:
   pkg/gplots/man/lowess.Rd
   pkg/gplots/man/venn.Rd
Log:
Fix errors identified by R CMD check

Modified: pkg/gplots/man/lowess.Rd
===================================================================
--- pkg/gplots/man/lowess.Rd	2016-03-25 17:11:26 UTC (rev 2103)
+++ pkg/gplots/man/lowess.Rd	2016-03-25 17:27:00 UTC (rev 2104)
@@ -28,8 +28,8 @@
 \method{lowess}{default}(x, y=NULL, f=2/3, iter=3L, delta=0.01 *
        diff(range(x)), ...)
 
-\method{lowess}{formula}(formula,data=parent.frame(), subset, f=2/3,
-       iter=3L, delta=.01*diff(range(mf[-response])), ... )
+\method{lowess}{formula}(formula,data=parent.frame(), ..., subset, f=2/3,
+       iter=3L, delta=.01*diff(range(mf[-response])))
 
 \method{plot}{lowess}(x, y, ..., col.lowess="red", lty.lowess=2)
 
@@ -57,10 +57,6 @@
   \item{delta}{values of \code{x} which lie within \code{delta}
     of each other replaced by a single value in the output from
     \code{lowess}.}
-  \item{na.action}{a function which indicates what should happen when the
-    data contain `NA's.  The default is set by the `na.action' setting
-    of `options', and is `na.fail' if that is unset. The ``factory-fresh''
-    default is `na.omit'.}
   \item{...}{parameters for methods.}
   \item{col.lowess, lty.lowess}{color and line type for plotted line}
 }

Modified: pkg/gplots/man/venn.Rd
===================================================================
--- pkg/gplots/man/venn.Rd	2016-03-25 17:11:26 UTC (rev 2103)
+++ pkg/gplots/man/venn.Rd	2016-03-25 17:27:00 UTC (rev 2104)
@@ -133,7 +133,7 @@
 str(isect)
 
 # Extract and combine the subsets of interest..
-AandB <- unique(c(int$A, int$B, int$'A:B'))
+AandB <- unique(c(isect$A, isect$B, isect$'A:B'))
 
 # and look at the results
 str(AandB)



More information about the R-gregmisc-commits mailing list