Description Usage Arguments Value Author(s) References See Also Examples
Given an abundance-based data, a bootstrap sample is generated from a reconstructed bootstrap assemblage.
1 | boot.abundance.fun(S.hat, f, b)
|
S.hat |
An estimate of species richness. |
f |
A vector of species frequency counts, i.e., the number of singleton species (only one individual observed in the sample), the number of doubleton species (two individuals observed in the sample), and so forth. |
b |
A vector of estimates of two parameters for obtaining the estimated relative abundances of observed species in a given sample by Chao et al.'s (2015) method. |
The generated bootstrap sample is a vector of species frequency counts, i.e., the number of singleton species (only one individual observed in the bootstrap sample), the number of doubleton species (two individuals observed in the bootstrap sample), and so forth.
Youhua Chen & Tsung-Jen Shen
Chao A, Hsieh T, Chazdon R, Colwell R, Gotelli N. 2015. Unveiling the species-rank abundance distribution by generalizing the Good-Turing sample coverage theory. Ecology 96:1189-1201.
1 2 3 4 5 6 7 8 9 10 11 12 | ## As an example, Herpetological assemblage data are used here.
data(HerpetologicalData)
## two columns represent two samples of species abundance data
X.merge = HerpetologicalData
## the first column is treated as the original sample
Xi = X.merge[,1]
## Convert species abundance data to species frequency counts data
f = X.to.f(Xi)
b = DetAbu(x=Xi, zero=FALSE)
## the estimated number of species
S.hat = SpEst.Chao1.abun(f)
boot.abundance.fun(S.hat=S.hat, f=f, b=b)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.