| ace | R Documentation |
Abundance-based Coverage Estimator (ACE) of total species richness (Chao & Lee 1992). Separates species into rare and abundant groups based on an abundance threshold.
ace(x, threshold = 10L)
x |
A site-by-species matrix (abundance data). |
threshold |
Integer. Abundance threshold separating rare from abundant species. Default 10. |
ACE partitions species into rare (abundance \le threshold) and
abundant (abundance > threshold) groups. The estimate is:
S_{ACE} = S_{abund} + \frac{S_{rare}}{C_{ACE}} + \frac{f_1}{C_{ACE}} \gamma^2
where C_{ACE} is the sample coverage of rare species and
\gamma^2 is the estimated coefficient of variation.
An object of class spacc_estimate.
Chao, A. & Lee, S.M. (1992). Estimating the number of classes via sample coverage. Journal of the American Statistical Association, 87, 210-217.
chao1(), chao2()
species <- matrix(rpois(50 * 30, 2), nrow = 50)
ace(species)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.