Multiplicative Diversity Partitioning
multipart.RdIn multiplicative diversity partitioning, mean values of alpha diversity at lower levels of a sampling hierarchy are compared to the total diversity in the entire data set or the pooled samples (gamma diversity).
Usage
multipart(...)
# Default S3 method
multipart(y, x, index=c("renyi", "tsallis"), scales = 1,
global = FALSE, relative = FALSE, nsimul=99, method = "r2dtable", ...)
# S3 method for class 'formula'
multipart(formula, data, index=c("renyi", "tsallis"), scales = 1,
global = FALSE, relative = FALSE, nsimul=99, method = "r2dtable", ...)Arguments
- y
A community matrix.
- x
A matrix with same number of rows as in
y, columns coding the levels of sampling hierarchy. The number of groups within the hierarchy must decrease from left to right. Ifxis missing, two levels are assumed: each row is a group in the first level, and all rows are in the same group in the second level.- formula
A two sided model formula in the form
y ~ x, whereyis the community data matrix with samples as rows and species as column. Right hand side (x) must be grouping variable(s) referring to levels of sampling hierarchy, terms from right to left will be treated as nested (first column is the lowest, last is the highest level). The formula will add a unique indentifier to rows and constant for the rows to always produce estimates of row-level alpha and overall gamma diversities. You must use non-formula interface to avoid this behaviour. Interaction terms are not allowed.- data
A data frame where to look for variables defined in the right hand side of
formula. If missing, variables are looked in the global environment.- index
Character, the entropy index to be calculated (see Details).
- relative
Logical, if
TRUEthen beta diversity is standardized by its maximum (see Details).- scales
Numeric, of length 1, the order of the generalized diversity index to be used.
- global
Logical, indicates the calculation of beta diversity values, see Details.
- nsimul
Number of permutations to use. If
nsimul = 0, only theFUNargument is evaluated. It is thus possible to reuse the statistic values without a null model.- method
Null model method: either a name (character string) of a method defined in
make.commsimor acommsimfunction. The default"r2dtable"keeps row sums and column sums fixed. Seeoecosimufor Details and Examples.- ...
Other arguments passed to
oecosimu, i.e.method,thinorburnin.
Details
Multiplicative diversity partitioning is based on Whittaker's (1972) ideas, that has recently been generalised to one parametric diversity families (i.e. Rényi and Tsallis) by Jost (2006, 2007). Jost recommends to use the numbers equivalents (Hill numbers), instead of pure diversities, and proofs, that this satisfies the multiplicative partitioning requirements.
The current implementation of multipart calculates Hill numbers
based on the functions renyi and tsallis
(provided as index argument).
If values for more than one scales are desired,
it should be done in separate runs, because it adds extra dimensionality
to the implementation, which has not been resolved efficiently.
Alpha diversities are then the averages of these Hill numbers for
each hierarchy levels, the global gamma diversity is the alpha value
calculated for the highest hierarchy level.
When global = TRUE, beta is calculated relative to the global gamma value:
$$\beta_i = \gamma / \alpha_{i}$$
when global = FALSE, beta is calculated relative to local
gamma values (local gamma means the diversity calculated for a particular
cluster based on the pooled abundance vector):
$$\beta_ij = \alpha_{(i+1)j} / mean(\alpha_{ij})$$
where \(j\) is a particular cluster at hierarchy level \(i\).
Then beta diversity value for level \(i\) is the mean of the beta
values of the clusters at that level, \(\beta_{i} = mean(\beta_{ij})\).
If relative = TRUE, the respective beta diversity values are
standardized by their maximum possible values (\(mean(\beta_{ij}) / \beta_{max,ij}\))
given as \(\beta_{max,ij} = n_{j}\) (the number of lower level units
in a given cluster \(j\)).
The expected diversity components are calculated nsimul
times by individual based randomization of the community data matrix.
This is done by the "r2dtable" method in oecosimu by default.
References
Jost, L. (2006). Entropy and diversity. Oikos, 113, 363–375.
Jost, L. (2007). Partitioning diversity into independent alpha and beta components. Ecology, 88, 2427–2439.
Whittaker, R. (1972). Evolution and measurement of species diversity. Taxon, 21, 213–251.
Author
Péter Sólymos, [email protected]
Examples
## NOTE: 'nsimul' argument usually needs to be >= 99
## here much lower value is used for demonstration
data(mite)
data(mite.xy)
data(mite.env)
## Function to get equal area partitions of the mite data
cutter <- function (x, cut = seq(0, 10, by = 2.5)) {
out <- rep(1, length(x))
for (i in 2:(length(cut) - 1))
out[which(x > cut[i] & x <= cut[(i + 1)])] <- i
return(out)}
## The hierarchy of sample aggregation
levsm <- with(mite.xy, data.frame(
l2=cutter(y, cut = seq(0, 10, by = 2.5)),
l3=cutter(y, cut = seq(0, 10, by = 5))))
## Multiplicative diversity partitioning
multipart(mite, levsm, index="renyi", scales=1, nsimul=19)
#> multipart object
#>
#> Call: multipart(y = mite, x = levsm, index = "renyi", scales = 1,
#> nsimul = 19)
#>
#> nullmodel method ‘r2dtable’ with 19 simulations
#> options: index renyi, scales 1, global FALSE
#> alternative hypothesis: statistic is less or greater than simulated values
#>
#> statistic SES mean 2.5% 50% 97.5% Pr(sim.)
#> alpha.1 11.235 -131.758 14.0860 14.0539 14.0861 14.1206 0.05 *
#> gamma 12.006 -349.913 14.1357 14.1231 14.1371 14.1425 0.05 *
#> beta.1 1.071 49.402 1.0035 1.0012 1.0037 1.0054 0.05 *
#> ---
#> Signif. codes: 0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1
multipart(mite ~ l2 + l3, levsm, index="renyi", scales=1, nsimul=19)
#> multipart object
#>
#> Call: multipart(formula = mite ~ l2 + l3, data = levsm, index =
#> "renyi", scales = 1, nsimul = 19)
#>
#> nullmodel method ‘r2dtable’ with 19 simulations
#> options: index renyi, scales 1, global FALSE
#> alternative hypothesis: statistic is less or greater than simulated values
#>
#> statistic SES mean 2.5% 50% 97.5% Pr(sim.)
#> alpha.1 8.0555 -71.679 12.1862 12.0883 12.1853 12.2984 0.05 *
#> alpha.2 11.2353 -76.193 14.0767 14.0083 14.0831 14.1366 0.05 *
#> alpha.3 12.0064 -376.016 14.1352 14.1273 14.1346 14.1457 0.05 *
#> gamma 14.1603 0.000 14.1603 14.1603 14.1603 14.1603 1.00
#> beta.1 1.3568 31.143 1.1595 1.1508 1.1586 1.1716 0.05 *
#> beta.2 1.0710 25.818 1.0042 1.0002 1.0038 1.0089 0.05 *
#> beta.3 1.1794 442.753 1.0018 1.0010 1.0018 1.0023 0.05 *
#> ---
#> Signif. codes: 0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1
multipart(mite ~ ., levsm, index="renyi", scales=1, nsimul=19, relative=TRUE)
#> multipart object
#>
#> Call: multipart(formula = mite ~ ., data = levsm, index = "renyi",
#> scales = 1, relative = TRUE, nsimul = 19)
#>
#> nullmodel method ‘r2dtable’ with 19 simulations
#> options: index renyi, scales 1, global FALSE
#> alternative hypothesis: statistic is less or greater than simulated values
#>
#> statistic SES mean 2.5% 50% 97.5% Pr(sim.)
#> alpha.1 8.055481 -48.227 12.176568 12.060082 12.176040 12.3428 0.05 *
#> alpha.2 11.235261 -105.800 14.070988 14.029709 14.077154 14.1195 0.05 *
#> alpha.3 12.006443 -286.467 14.133086 14.117974 14.133318 14.1442 0.05 *
#> gamma 14.160271 0.000 14.160271 14.160271 14.160271 14.1603 1.00
#> beta.1 0.078594 17.995 0.068312 0.067184 0.068369 0.0692 0.05 *
#> beta.2 0.535514 35.116 0.502205 0.500445 0.502135 0.5038 0.05 *
#> beta.3 0.589695 337.116 0.500962 0.500570 0.500954 0.5015 0.05 *
#> ---
#> Signif. codes: 0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1
multipart(mite ~ ., levsm, index="renyi", scales=1, nsimul=19, global=TRUE)
#> multipart object
#>
#> Call: multipart(formula = mite ~ ., data = levsm, index = "renyi",
#> scales = 1, global = TRUE, nsimul = 19)
#>
#> nullmodel method ‘r2dtable’ with 19 simulations
#> options: index renyi, scales 1, global TRUE
#> alternative hypothesis: statistic is less or greater than simulated values
#>
#> statistic SES mean 2.5% 50% 97.5% Pr(sim.)
#> alpha.1 8.0555 -59.952 12.1849 12.1053 12.1696 12.3211 0.05 *
#> alpha.2 11.2353 -79.118 14.0855 14.0252 14.0797 14.1379 0.05 *
#> alpha.3 12.0064 -260.287 14.1344 14.1155 14.1366 14.1426 0.05 *
#> gamma 14.1603 0.000 14.1603 14.1603 14.1603 14.1603 1.00
#> beta.1 1.7578 91.098 1.1621 1.1493 1.1636 1.1698 0.05 *
#> beta.2 1.2603 99.168 1.0053 1.0016 1.0057 1.0096 0.05 *
#> beta.3 1.1794 306.119 1.0018 1.0012 1.0017 1.0032 0.05 *
#> ---
#> Signif. codes: 0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1