set.seed(97310)
divent is a package for R designed to estimate diversity based on HCDT entropy or similarity-based entropy. It is a reboot of the entropart package, following the tidyverse manifest and easier to use. This is a short introduction to its use.
The package allows estimating biodiversity according to the framework based on HCDT entropy, the correction of its estimation-bias [@Grassberger1988; @Chao2003; @Chao2015] and its transformation into equivalent numbers of species [@Hill1973; @Jost2006; @Marcon2014a]. Estimation of diversity at arbitrary levels of sampling, requiring interpolation or extrapolation [@Chao2014] is available.
Phylogenetic or functional diversity [@Marcon2014b] can be estimated, considering phyloentropy as the average species-neutral diversity over slices of a phylogenetic or functional tree [@Pavoine2009].
Similarity-based diversity [@Leinster2012] can be used to estimate [@Marcon2014e] functional diversity from a similarity or dissimilarity matrix between species without requiring building a dendrogram and thus preserving the topology of species [@Pavoine2005a; @Podani2007].
The classical diversity estimators (Shannon and Simpson entropy) can be found in many R packages. Bias correction is rarely available except in the EntropyEstimation [@Cao2014] package which provides the Zhang and Grabchak's estimators of entropy and diversity and their asymptotic variance (not included in divent).
Community data is:
Example data is provided in the dataset paracou_6_abd
.
Let's get the abundances of tree species in the 6.25-ha tropical forest plot #6 from Paracou forest station in French Guiana.
It is divided into 4 equally-sized subplots:
library("divent") paracou_6_abd # Number of individuals in each community abd_sum(paracou_6_abd)
The data in paracou_6_abd
is an object of class abundances
, i.e. a tibble with species as columns and sites as rows.
It can be manipulated as any dataframe and plotted as a rank-abundance curve:
autoplot(paracou_6_abd[1, ])
The rcommunity
function allows drawing random communities, e.g. a log-normal one [@Preston1948]:
rc <- rcommunity(1, size = 10000, distribution = "lnorm") autoplot(rc, fit_rac = TRUE, distribution = "lnorm")
The Whittaker plot (rank-abundance curve) of a random log-normal distribution of 10000 individuals simulated with default parameter ($\sigma = 1$) is produced.
The classical indices of diversity are richness (the number of species), Shannon's and Simpson's entropies:
div_richness(paracou_6_abd) ent_shannon(paracou_6_abd) ent_simpson(paracou_6_abd)
When applied to probabilities (created with as_probaVector
in the following example), no estimation-bias correction is applied: this means that indices are just calculated by applying their definition function to the probabilities (that is the naive, or plugin estimator).
library("dplyr") paracou_6_abd %>% as_probabilities() %>% ent_shannon()
When abundances are available, many estimators can be used [@Marcon2015a] to address unobserved species and the non-linearity of the indices:
ent_shannon(paracou_6_abd) ent_shannon(paracou_6_abd, estimator = "ChaoJost")
The best available estimator is chosen by default: its name is returned.
Those indices are special cases of the Tsallis entropy [-@Tsallis1988] or order $q$ (respectively $q=0,1,2$ for richness, Shannon, Simpson):
ent_tsallis(paracou_6_abd, q = 1)
Entropy should be converted to its effective number of species, i.e. the number of species with equal probabilities that would yield the observed entropy, called @Hill1973 numbers or simply diversity [@Jost2006].
div_hill(paracou_6_abd, q = 1)
Diversity is the deformed exponential of order $q$ of entropy, and entropy is the deformed logarithm of of order $q$ of diversity:
(d2 <- div_hill(paracou_6_abd, q = 2)$diversity) ln_q(d2, q = 2) (e2 <- ent_tsallis(paracou_6_abd, q = 2)$entropy) exp_q(e2, q = 2)
If an ultrametric dendrogram describing species phylogeny (here, a mere taxonomy with family, genus and species) is available, phylogenetic entropy and diversity [@Marcon2014b] can be calculated:
div_phylo(paracou_6_abd, tree = paracou_6_taxo, q = 1)
Recall that all those functions can be applied to a numeric vector containing abundances, without having to build an object of class abundances
.
# Richness of a community of 100 species, each of them with 10 individuals div_richness(rep(10, 100))
With a Euclidian distance matrix between species, similarity-based diversity [@Leinster2012; @Marcon2014e] is available:
# Similarity is computed from the functional distance matrix of Paracou species Z <- fun_similarity(paracou_6_fundist) # Calculate diversity of order 2 div_similarity(paracou_6_abd, similarities = Z, q = 2)
Diversity can be plotted against its order to provide a diversity profile. Order 0 corresponds to richness, 1 to Shannon's and 2 to Simpson's diversities:
profile_hill(paracou_6_abd) %>% autoplot
Profiles of phylogenetic diversity and similarity-based diversity are obtained the same way.
profile_phylo(paracou_6_abd, tree = paracou_6_taxo) %>% autoplot # Similarity matrix Z <- fun_similarity(paracou_6_fundist) profile_similarity(paracou_6_abd, similarities = Z) %>% autoplot
Diversity can be interpolated or extrapolated to arbitrary sampling levels.
# Estimate the diversity of 1000 individuals div_hill(paracou_6_abd, q = 1, level = 1000)
The sampling level can be a sample coverage, that is converted to the equivalent number of individuals.
# Estimate the diversity at 80% coverage div_hill(paracou_6_abd, q = 1, level = 0.8)
Diversity accumulation curves are available.
accum_hill( paracou_6_abd[1, ], q = 1, levels = 1:500, n_simulations = 100 ) %>% autoplot()
Phylogenetic diversity can be addressed the same way. Confidence intervals of the estimation can be computed, taking into account sampling variability.
accum_div_phylo( paracou_6_abd[1, ], tree = paracou_6_taxo, q = 1, levels = 1:2000 ) %>% autoplot()
A metacommunity is the assemblage several communities.
The set of communities is described by the abundances of their species and their weight.
Species probabilities in the meta-community are by definition the weighted average of their probabilities in the communities. Abundances are calculated so that the total abundance of the metacommunity is the sum of all abundances of communities. If weights are equal, then the abundances of the metacommunity are simply the sum of those of the communities. If they are not, the abundances of the metacommunity are generally not integer values, which complicates the estimation of diversity.
Example:
# Abundances of three communities with four species (abd <- matrix( c( 10, 0, 25, 10, 20, 15, 10, 35, 0, 10, 5, 2 ), ncol = 4 )) # Community weights w <- c(1, 2, 1)
A set of communities is built.
(communities <- as_abundances(abd, weights = w))
The function metacommunity()
creates a metacommunity.
To plot it, use argument type = "Metacommunity
when plotting the species_distribution
.
(mc <- metacommunity(communities)) plot(communities, type = "Metacommunity")
Each shade of grey represents a species. Heights correspond to the probability of species and the width of each community is its weight.
High level functions allow computing diversity of all communities ($\alpha$ diversity), of the meta-community ($\gamma$ diversity), and $\beta$ diversity, i.e.\ the number of effective communities (the number of communities with equal weights and no common species that would yield the observed $\beta$ diversity).
The div_part
function calculates everything at once, for a given order of diversity $q$:
div_part(paracou_6_abd, q = 1)
An alternative is the gamma
argument of all diversity estimation function to obtain $\gamma$ diversity instead of the diversity of each community.
div_hill(paracou_6_abd, q = 1, gamma = TRUE)
https://ericmarcon.github.io/divent/
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.