[Vegan-commits] r902 - pkg/vegan/R
noreply at r-forge.r-project.org
noreply at r-forge.r-project.org
Sun Jul 19 16:32:08 CEST 2009
Author: gsimpson
Date: 2009-07-19 16:31:58 +0200 (Sun, 19 Jul 2009)
New Revision: 902
Modified:
pkg/vegan/R/text.orditkplot.R
Log:
text.orditkplot was calling text with argument 'label' which should be 'labels'; fix saves some warnings about 'label' not being a graphical parameter.
Modified: pkg/vegan/R/text.orditkplot.R
===================================================================
--- pkg/vegan/R/text.orditkplot.R 2009-07-17 15:50:14 UTC (rev 901)
+++ pkg/vegan/R/text.orditkplot.R 2009-07-19 14:31:58 UTC (rev 902)
@@ -1,6 +1,6 @@
`text.orditkplot` <-
function(x, ...)
{
- text(x$labels, label = rownames(x$labels), ...)
+ text(x$labels, labels = rownames(x$labels), ...)
}
More information about the Vegan-commits
mailing list