hill {benthos} | R Documentation |
Hill's Diversity Numbers
Description
According to Hill (1973): "a diversity number is figuratively a
measure of how many species are present if we examine the sample down to a
certain depth among its rarities. If we examine superficially (e.g.,
by using ) we shall see only the more abundant species. If we
look deeply (e.g., by using
) we shall see all the
species present."
Hill's diversity numbers are given by:
Special cases are:
reciprocal of the proportional abundance of the rarest species;
total number of species present;
exp(H), where H: Shannon's index (see also
shannon
);reciprocal of Simpson's index (see also
simpson
);reciprocal of the proportional abundance of the commonest species.
Usage
hill(.data = NULL, taxon, count, a = 0)
hill_(.data = NULL, taxon, count, a = 0)
hill0(.data = NULL, taxon, count)
hill0_(.data = NULL, taxon, count)
hill1(.data = NULL, taxon, count)
hill1_(.data = NULL, taxon, count)
hill2(.data = NULL, taxon, count)
hill2_(.data = NULL, taxon, count)
Arguments
.data |
data in a |
taxon |
name of column in |
count |
name of column in |
a |
exponent in Hill's diversity number (R, with special cases for
|
Value
numeric vector of Hill's numbers
Functions
-
hill_()
: version suitable for calling from a function (see package lazyeval). -
hill0()
: -
hill0_()
:, version suitable for calling from a function (see package lazyeval).
-
hill1()
: -
hill1_()
:, version suitable for calling from a function (see package lazyeval).
-
hill2()
: -
hill2_()
:, version suitable for calling from a function (see package lazyeval).
References
Hill, M.O., 1973. Diversity and Evenness: A Unifying Notation and Its Consequences. Ecology 54:427-432
See Also
species_richness
, shannon
,
simpson
Examples
hill(
taxon = c("Euspira pulchella", "Nephtys cirrosa"),
count = c(6, 12),
a = 0
)
hill0(
taxon = c("Euspira pulchella", "Nephtys cirrosa"),
count = c(6, 12)
)