Learn R Programming

metricTester (version 1.3.6)

lengthNonZeros: Calculate the species richness of a vector from a CDM

Description

Given a vector of abundances or presence/absences from a community data matrix, will calculate the species richness of that vector.

Usage

lengthNonZeros(input.vector)

Arguments

input.vector

A vector from a community data matrix of abundances.

Value

A named vector of species richness.

Details

An internal function to calculate richness of a cdm.

References

Miller, E. T., D. R. Farine, and C. H. Trisos. 2016. Phylogenetic community structure metrics and null models: a review with new methods and software. Ecography DOI: 10.1111/ecog.02070

Examples

Run this code
# NOT RUN {
#simulate tree with birth-death process
tree <- geiger::sim.bdtree(b=0.1, d=0, stop="taxa", n=50)

sim.abundances <- round(rlnorm(5000, meanlog=2, sdlog=1)) + 1

cdm <- simulateComm(tree, richness.vector=10:25, abundances=sim.abundances)

#note that with this example, each community in the cdm will be labeled by its richness
apply(cdm, 1, lengthNonZeros)
# }

Run the code above in your browser using DataLab