[Xts-commits] r769 - in pkg/xts: R man

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Tue Apr 2 02:40:32 CEST 2013


Author: bodanker
Date: 2013-04-02 02:40:32 +0200 (Tue, 02 Apr 2013)
New Revision: 769

Modified:
   pkg/xts/R/merge.R
   pkg/xts/man/merge.Rd
Log:
- add drop and check.names args to match merge.zoo


Modified: pkg/xts/R/merge.R
===================================================================
--- pkg/xts/R/merge.R	2013-02-03 04:59:38 UTC (rev 768)
+++ pkg/xts/R/merge.R	2013-04-02 00:40:32 UTC (rev 769)
@@ -26,7 +26,9 @@
                      join="outer",
                      retside=TRUE,
                      retclass="xts",
-                     tzone=NULL) {
+                     tzone=NULL,
+                     drop=NULL,
+                     check.names=NULL) {
   if(is.logical(retclass) && !retclass) {
     setclass=FALSE
   } else setclass <- TRUE

Modified: pkg/xts/man/merge.Rd
===================================================================
--- pkg/xts/man/merge.Rd	2013-02-03 04:59:38 UTC (rev 768)
+++ pkg/xts/man/merge.Rd	2013-04-02 00:40:32 UTC (rev 769)
@@ -17,7 +17,9 @@
       join = "outer",
       retside = TRUE,
       retclass = "xts",
-      tzone = NULL)
+      tzone = NULL,
+      drop=NULL,
+      check.names=NULL)
 }
 \arguments{
   \item{\dots}{ one or more xts objects, or objects coercible to class xts }
@@ -28,6 +30,8 @@
   \item{retside}{ which side of the merged object should be returned (2-case only) }
   \item{retclass}{ object to return }
   \item{tzone}{ time zone of merged object }
+  \item{drop}{ not currently used }
+  \item{check.names}{ not currently used }
 }
 \details{
 This is an xts method compatible with merge.zoo, as xts extends zoo.



More information about the Xts-commits mailing list