[Vegan-commits] r1488 - in branches/1.17: R man

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Mon Feb 14 18:09:42 CET 2011


Author: jarioksa
Date: 2011-02-14 18:09:42 +0100 (Mon, 14 Feb 2011)
New Revision: 1488

Modified:
   branches/1.17/R/eigenvals.R
   branches/1.17/man/eigenvals.Rd
Log:
merge 1486: R CMD check fixes

Modified: branches/1.17/R/eigenvals.R
===================================================================
--- branches/1.17/R/eigenvals.R	2011-02-14 08:34:17 UTC (rev 1487)
+++ branches/1.17/R/eigenvals.R	2011-02-14 17:09:42 UTC (rev 1488)
@@ -81,7 +81,7 @@
 ## dudi objects of ade4
 
 `eigenvals.dudi` <-
-    function(x)
+    function(x, ...)
 {
     out <- x$eig
     class(out) <- "eigenvals"
@@ -91,7 +91,7 @@
 ## labdsv::pco
 
 `eigenvals.pco` <-
-    function(x)
+    function(x, ...)
 {
     out <- x$eig
     class(out) <- "eigenvals"
@@ -101,7 +101,7 @@
 ## labdsv::pca
 
 `eigenvals.pca` <-
-    function(x)
+    function(x, ...)
 {
     out <- x$sdev^2
     ## pca() may return only some first eigenvalues

Modified: branches/1.17/man/eigenvals.Rd
===================================================================
--- branches/1.17/man/eigenvals.Rd	2011-02-14 08:34:17 UTC (rev 1487)
+++ branches/1.17/man/eigenvals.Rd	2011-02-14 17:09:42 UTC (rev 1488)
@@ -7,6 +7,9 @@
 \alias{eigenvals.cca}
 \alias{eigenvals.wcmdscale}
 \alias{eigenvals.pcnm}
+\alias{eigenvals.dudi}
+\alias{eigenvals.pca}
+\alias{eigenvals.pco}
 \alias{print.eigenvals}
 \alias{summary.eigenvals}
 



More information about the Vegan-commits mailing list