| turnover {tabula} | R Documentation |
Turnover
Description
Returns the degree of turnover in taxa composition along a gradient or transect.
Usage
turnover(object, ...)
## S4 method for signature 'matrix'
turnover(
object,
...,
method = c("whittaker", "cody", "routledge1", "routledge2", "routledge3", "wilson")
)
## S4 method for signature 'data.frame'
turnover(
object,
...,
method = c("whittaker", "cody", "routledge1", "routledge2", "routledge3", "wilson")
)
Arguments
object |
A |
... |
Further arguments to be passed to internal methods. |
method |
A |
Details
The following methods can be used to ascertain the degree of turnover
in taxa composition along a gradient (\beta-diversity) on qualitative
(presence/absence) data:
codyroutledge1routledge2routledge3Routledge third measure (exponential form of the second measure).
whittakerwilson
This assumes that the order of the matrix rows (from 1 to n)
follows the progression along the gradient/transect.
Value
A numeric vector.
Author(s)
N. Frerebeau
See Also
index_cody(), index_routledge1(), index_routledge2(),
index_routledge3(), index_whittaker(), index_wilson()
Other diversity measures:
heterogeneity(),
occurrence(),
profiles(),
rarefaction(),
richness(),
she(),
similarity(),
simulate()
Examples
## Data from Magurran 1988, p. 162
data("woodland")
## Whittaker's measure
turnover(woodland, "whittaker") # 1
## Cody's measure
turnover(woodland, "cody") # 3
## Routledge's measures
turnover(woodland, "routledge1") # 0.29
turnover(woodland, "routledge2") # 0.56
turnover(woodland, "routledge3") # 1.75
## Wilson and Shmida's measure
turnover(woodland, "wilson") # 1