| iChao2 | R Documentation |
Estimate total species richness from incidence data using the improved Chao2 estimator (Chiu et al. 2014). Uses uniques through quadruplicates (Q1–Q4) to reduce bias for small samples.
iChao2(x)
x |
A site-by-species matrix (presence/absence or abundance). Automatically binarized. |
The improved Chao2 estimator is the incidence-based analogue of iChao1:
S_{iChao2} = S_{Chao2} + \frac{Q_3}{4 Q_4} \max\left(Q_1 - \frac{Q_2 Q_3}{2 Q_4}, 0\right)
When Q_4 = 0, the estimator collapses to Chao2.
An object of class spacc_estimate with components:
Name of the estimator ("iChao2")
Estimated total richness
Standard error of the estimate
Lower 95 percent confidence bound
Upper 95 percent confidence bound
Observed species richness
List with Q1, Q2, Q3, Q4, n_sites
Chiu, C.H., Wang, Y.T., Walther, B.A. & Chao, A. (2014). An improved nonparametric lower bound of species richness via a modified Good-Turing frequency formula. Biometrics, 70, 671-682.
chao2() for the standard estimator, iChao1() for
abundance-based version
species <- matrix(rbinom(50 * 30, 1, 0.3), nrow = 50)
iChao2(species)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.