skbio.diversity.alpha.chao1_ci(counts, bias_corrected=True, zscore=1.96)[source]¶Calculate chao1 confidence interval.
State: Experimental as of 0.4.0.
| Parameters: | counts : 1-D array_like, int
bias_corrected : bool, optional
zscore : scalar, optional
|
|---|---|
| Returns: | tuple
|
See also
Notes
The implementation here is based on the equations in the EstimateS manual [R22]. Different equations are employed to calculate the chao1 variance and confidence interval depending on bias_corrected and the presence/absence of singletons and/or doubletons.
Specifically, the following EstimateS equations are used:
bias_corrected=True, Equations 6, 13.bias_corrected=False, Equations 5, 13.References
| [R22] | (1, 2) http://viceroy.eeb.uconn.edu/estimates/ |