untb (version 1.2-15)

no.of.ind: Ecosystem diagnostics

Description

Ecosystem diagnostics such as species count, individual count, number of singletons, etc

Usage

no.of.ind(x)
no.of.spp(x, include.extinct=FALSE)
no.of.singletons(x)
no.of.extinct(x)
maximal.abundance(x)
singletons(x)
extinct(x)
extant(x)

Arguments

x
Ecosystem vector; is coerced to class count
include.extinct
In function no.of.spp(), Boolean argument with TRUE meaning to include extinct species (ie species with an abundance of zero), and default FALSE meaning to return the number of extant species.

Details

Function no.of.spp() returns the number of species in an ecosystem object, treating exctinct species in line with argument include.extinct.

Function no.of.ind() returns the number of individuals.

Function no.of.singletons() returns the number of singletons.

Function no.of.extinct() returns the number of extinct species.

Function maximal.abundance() returns the abundance of the most abundant species. Function singletons() returns a count object containing only the singletons: each abundance is one.

Function extinct() returns a count object containing only the extinct species: each abundance is zero.

Function extant() returns a count object containing only the extant species: each abundance is greater than zero.

References

Hubbell

Examples

Run this code
data(butterflies)
no.of.spp(butterflies)
no.of.ind(butterflies)

Run the code above in your browser using DataCamp Workspace