View source: R/betapart-core-abund.R
betapart.core.abund | R Documentation |
Computes the basic quantities needed for computing the abundance-based multiple-site dissimilarity measures and pairwise dissimilarity matrices.
betapart.core.abund(x)
x |
data frame, where rows are sites and columns are species |
The function returns an object of class betapart.abund
with the following elements:
multiple.shared.abund |
the multiple-site intersection component in terms of abundances (AM) |
pair.shared.abund |
a matrix containing the agreement in abundance between pairs of sites (A) |
min.not.shared.abund |
a matrix containing the minimum disagreement in abundance between pairs of sites: min(B,C) |
max.not.shared.abund |
a matrix containing the maximum disagreement in abundance between pairs of sites between pairs of sites: max(B,C) |
pair.not.shared.abund |
a matrix containing the total disagreement in abundance between pairs of sites: B+C |
Andrés Baselga
Baselga, A. 2013. Separating the two components of abundance-based dissimilarity: balanced changes in abundance vs. abundance gradients. Methods in Ecology and Evolution, 4: 552–557
Legendre, P. 2014. Interpreting the replacement and richness difference components of beta diversity. Global Ecology and Biogeography, 23: 1324–1334
Baselga, A. 2017. Partitioning abundance-based multiple-site dissimilarity into components: balanced variation in abundance and abundance gradients. Methods in Ecology and Evolution, 8: 799-808
beta.multi.abund
, beta.pair.abund
, beta.sample.abund
, betapart.core
require(vegan)
data(BCI)
core.BCI<-betapart.core.abund(BCI)
pair.BCI<-beta.pair.abund(core.BCI)
multi.BCI<-beta.multi.abund(core.BCI)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.