BoundaryClump: Determines boundary clumping

Description Usage Arguments Details Value Author(s) References Examples

View source: R/BoundaryClump.R

Description

'BoundaryClump' calculates the Morisita's Index (Morisita 1962) for presence-absence interaction matrices, using a chi-squared test to assess significance.

Usage

1
2
BoundaryClump(comm, order = TRUE, scores = 1, binary = TRUE,
  fill = TRUE)

Arguments

comm

community data in the form of a presence absence matrix

order

logical argument indicating whether to ordinate the interaction matrix or not. See details.

scores

axis scores to ordinate matrix. 1: primary axis scores (default) 2: secondary axis scores

binary

logical argument indicating whether to ordinate the community matrix based on abundance or binary (default) data.

fill

should embedded absences be filled before the statistic is calculated? (default is TRUE)

Details

This statistic is not based on randomization methods, so the function only requires a presence-absence interaction matrix and two arguments regarding the ordination of the empirical matrix.

The default is the range perspective, meaning that the analyses of boundary clumping and species turnover compare the distribution of species among sites. If the 'community' perspective is desired, transpose the matrix before analysis using the transpose function ('t()'). However, the author cautions against misinterpretation of the community perspective, as the biological meaning of turnover and boundary clumping differ between perspectives.

Boundary clumping, quantified by the Morisita's index, is a measure of the degree to which species range boundaries overlap. This measure, and species turnover, cannot be interpreted unless the network is significantly coherent (see 'Coherence()').

If 'order' is FALSE, the interaction matrix is not ordinated, allowing the user to order the matrix based on site characteristics or other biologically relevant characteristics.

Value

'BoundaryClump' returns a data frame containing the calculated Morisita's index ('index'), the corresponding p-value ('P'), and the degrees of freedom ('df').

The p-value is based on a chi-squared test comparing the Morisita's index to a value of 1. If the Morisita's index is less than 1, a left-tailed test is performed (less clumping than expected by chance).

If the Morisita's index is greater than 1, a right-tailed test is performed (more clumping han expected by chance)

Author(s)

Tad Dallas

References

Morisita, M. 1962. Id-index, a measure of dispersion of individuals. Res. Popul. Ecol. 4, 1-7.

Examples

1
2
3
4
5
data(TestMatrices)
intmat <- TestMatrices[[1]]
bound.test <- BoundaryClump(intmat, order=TRUE, scores=1, 
binary=TRUE, fill=TRUE)
bound.test

metacom documentation built on April 17, 2020, 1:26 a.m.