Description Usage Arguments Details Value Author(s) References See Also Examples
Chao's Jaccard and Sorenson shared species estimators for use with incomplete datasets
1 2 | chao.sorenson(x, y)
chao.jaccard(x, y)
|
x |
species from group A |
y |
species from group B |
You must provide two separate vectors, with species arranged in the same order, from area A and B. If species are present in one site but not the other, these must be recorded for both sites; the site where they are not found should be coded as a zero. Species not present at either site are ignored.
Returns the Chao-Jaccard or Chao-Sorenson similarity index for the two sites in question.
Matthew Vavrek
Chao, A., R. L. Chazdon, et al. 2005. A new statistical approach for assessing similarity of species composition with incidence and abundance data. Ecology Letters 8: 148-159.
1 2 3 4 5 | ##Species counts from two different locations
a <- c(1,0,4,3,5,0,0,7)
b <- c(2,1,3,0,0,1,0,6)
chao.sorenson(a,b)
chao.jaccard(a,b)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.