From noreply at r-forge.r-project.org Thu Nov 5 15:02:12 2015
From: noreply at r-forge.r-project.org (noreply at r-forge.r-project.org)
Date: Thu, 5 Nov 2015 15:02:12 +0100 (CET)
Subject: [Vegan-commits] r2973 - pkg/vegan/R
Message-ID: <20151105140212.8E867187C61@r-forge.r-project.org>
Author: jarioksa
Date: 2015-11-05 15:02:11 +0100 (Thu, 05 Nov 2015)
New Revision: 2973
Modified:
pkg/vegan/R/vegdist.R
Log:
Merge branch 'cran-2.3' into r-forge-svn-local
Modified: pkg/vegan/R/vegdist.R
===================================================================
--- pkg/vegan/R/vegdist.R 2015-10-23 09:33:00 UTC (rev 2972)
+++ pkg/vegan/R/vegdist.R 2015-11-05 14:02:11 UTC (rev 2973)
@@ -15,10 +15,10 @@
stop("invalid distance method")
if (method == -1)
stop("ambiguous distance method")
- if (method > 2 && any(rowSums(x, na.rm = TRUE) == 0))
+ if (!method %in% c(1,2,6,16) && any(rowSums(x, na.rm = TRUE) == 0))
warning("you have empty rows: their dissimilarities may be meaningless in method ",
dQuote(inm))
- if (method > 2 && any(x < 0, na.rm = TRUE))
+ if (!method %in% c(1,2,6,16) && any(x < 0, na.rm = TRUE))
warning("results may be meaningless because data have negative entries in method ",
dQuote(inm))
if (method == 11 && any(colSums(x) == 0))
From noreply at r-forge.r-project.org Fri Nov 13 08:21:48 2015
From: noreply at r-forge.r-project.org (noreply at r-forge.r-project.org)
Date: Fri, 13 Nov 2015 08:21:48 +0100 (CET)
Subject: [Vegan-commits] r2974 - pkg/vegan/R
Message-ID: <20151113072148.D087F186D3D@r-forge.r-project.org>
Author: jarioksa
Date: 2015-11-13 08:21:48 +0100 (Fri, 13 Nov 2015)
New Revision: 2974
Modified:
pkg/vegan/R/howHead.R
Log:
Squashed commit of the following:
commit 8587c83f846a91221a6cc9d24a533029e18425a0
Author: Gavin L. Simpson Display of gridded permutation results failed.
+ vegan News
+Changes in version 2.3-2
+
+
+
+BUG FIXES
+
+
+
+
+
+
+
+
+ordicluster joined the branches at wrong coordinates
+in some cases.
+ordiellipse ignored weights when calculating standard
+errors (kind = "se"). This influenced plots of cca,
+and also influenced ordiareatest.
+NEW FEATURES
+
+
+
+
+
+
+
+
text, points and lines functions for
+procrustes analysis gained new argument truemean
+which allows adding procrustes items to the plots of
+original analysis.
+rrarefy returns observed non-rarefied communities
+(with a warning) when users request subsamples that are larger
+than the observed community instead of failing. Function
+drarefy has been similar and returned sampling
+probabilities of 1, but now it also issues a warning.
+Changes in version 2.3-1
From noreply at r-forge.r-project.org Fri Nov 13 13:05:33 2015
From: noreply at r-forge.r-project.org (noreply at r-forge.r-project.org)
Date: Fri, 13 Nov 2015 13:05:33 +0100 (CET)
Subject: [Vegan-commits] r2976 - pkg/vegan/inst
Message-ID: <20151113120533.E906D184BCD@r-forge.r-project.org>
Author: jarioksa
Date: 2015-11-13 13:05:33 +0100 (Fri, 13 Nov 2015)
New Revision: 2976
Modified:
pkg/vegan/inst/NEWS.Rd
Log:
Squashed commit of the following:
commit 7024df2c2de9e54c23c97dc91b87b6d9b750b2b1
Author: Jari Oksanen drarefy has been similar and returned sampling
-probabilities of 1, but now it also issues a warning.
+probabilities of 1, but now it also issues a warning. Fixes issue
+#144 in
+Github.
Display of gridded permutation results failed. +
Printing details of a gridded permutation design would fail +when the grid was at the within-plot level.
ordicluster joined the branches at wrong coordinates
@@ -35,6 +36,19 @@
adonis and capscale functions recognize
+symmetric square matrices as dissimilarities. Formerly
+dissimilarities had to be given as "dist" objects such as
+produced by dist or vegdist functions, and data
+frames and matrices were regarded as observations x variables
+data which could confuse users (e.g., issue
+#147).
+
mso accepts "dist" objects for the distances
+among locations as an alternative to coordinates of locations.
+
text, points and lines functions for
procrustes analysis gained new argument truemean
which allows adding procrustes items to the plots of
From noreply at r-forge.r-project.org Thu Nov 26 10:14:59 2015
From: noreply at r-forge.r-project.org (noreply at r-forge.r-project.org)
Date: Thu, 26 Nov 2015 10:14:59 +0100 (CET)
Subject: [Vegan-commits] r2980 - in pkg/vegan: . R
Message-ID: <20151126091459.78165186E88@r-forge.r-project.org>
Author: jarioksa
Date: 2015-11-26 10:14:58 +0100 (Thu, 26 Nov 2015)
New Revision: 2980
Modified:
pkg/vegan/DESCRIPTION
pkg/vegan/R/anosim.R
pkg/vegan/R/bioenv.default.R
pkg/vegan/R/gdispweight.R
pkg/vegan/R/mrpp.R
pkg/vegan/R/rarefy.R
Log:
Squashed commit of the following:
commit 43e0233943ef8c6f56b6f1a716beb13a3b32ecfc
Author: Jari Oksanen