simpson {benthos} | R Documentation |
Simpson's Measure of Concentration
Description
The probability that two inidividuals selected at random (with replacement, Hurlbert, 1971, p.579) from a sample will belong to the same species. For an infinite sample Simpson's Index is given by (Peet, 1974):
For a finite sample by:
where the proportion of the individuals in species
,
the number of individuals in species
(relative
abundance
), and the total number
of individuals (
total_abundance
). The finite sample case
has been implemented in function simpson
(and simpson_
).
Usage
simpson(.data = NULL, taxon, count)
simpson_(.data = NULL, taxon, count)
Arguments
.data |
data in a |
taxon |
name of column in |
count |
name of column in |
Value
The probability that two inidividuals selected at random from a sample will belong to the same species.
Functions
-
simpson_()
: version suitable for calling from a function (see package lazyeval).
References
Peet, R. K. 1974, The Measurement of Species Diversity. Annual Review of Ecology and Systematics 5:285-307.
See Also
Examples
simpson(
taxon = c("Euspira pulchella", "Nephtys cirrosa"),
count = c(6, 12)
)