[Vegan-commits] r795 - in branches/1.15: R inst man

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Sun Apr 5 16:56:29 CEST 2009


Author: jarioksa
Date: 2009-04-05 16:56:28 +0200 (Sun, 05 Apr 2009)
New Revision: 795

Modified:
   branches/1.15/R/decostand.R
   branches/1.15/inst/ChangeLog
   branches/1.15/man/decostand.Rd
Log:
merge r788 to branches/1.15: add dots to decostand

Modified: branches/1.15/R/decostand.R
===================================================================
--- branches/1.15/R/decostand.R	2009-04-05 14:50:12 UTC (rev 794)
+++ branches/1.15/R/decostand.R	2009-04-05 14:56:28 UTC (rev 795)
@@ -1,5 +1,5 @@
 "decostand" <-
-    function (x, method, MARGIN, range.global, na.rm = FALSE) 
+    function (x, method, MARGIN, range.global, na.rm = FALSE, ...) 
 {
     wasDataFrame <- is.data.frame(x)
     x <- as.matrix(x)

Modified: branches/1.15/inst/ChangeLog
===================================================================
--- branches/1.15/inst/ChangeLog	2009-04-05 14:50:12 UTC (rev 794)
+++ branches/1.15/inst/ChangeLog	2009-04-05 14:56:28 UTC (rev 795)
@@ -5,6 +5,9 @@
 
 Version 1.15-2 (opened January 14, 2009)
 
+	* merge r788: add "..." to decostand so that stressplot(metaMDS(x,
+	dist="gower", trymax=40)) works.
+
 	* merge r790 to 1.15 branch: handle missing values in betadisper.
 
 	* merged r781 and r786  from trunk to 1.15 branch: betadisper 

Modified: branches/1.15/man/decostand.Rd
===================================================================
--- branches/1.15/man/decostand.Rd	2009-04-05 14:50:12 UTC (rev 794)
+++ branches/1.15/man/decostand.Rd	2009-04-05 14:56:28 UTC (rev 795)
@@ -8,7 +8,7 @@
 methods for community ecologists.
 }
 \usage{
-decostand(x, method, MARGIN, range.global, na.rm=FALSE)
+decostand(x, method, MARGIN, range.global, na.rm=FALSE, ...)
 
 wisconsin(x)
 }
@@ -23,6 +23,7 @@
     subsets of data.  The dimensions of \code{MARGIN} must match with
     \code{x}. }
   \item{na.rm}{Ignore missing values in row or column standardizations.}
+  \item{\dots}{Other arguments to the function (ignored).}
 }
 \details{
   The function offers following standardization methods for community



More information about the Vegan-commits mailing list