raw_sub_rho {rdiversity} | R Documentation |
Raw subcommunity rho diversity
Description
Calculates similarity-sensitive raw subcommunity rho diversity (the
redundancy of subcommunity j. This measure may be calculated for
a series of orders, represented as a vector of qs
.
Usage
raw_sub_rho(meta, qs)
Arguments
meta |
object of class |
qs |
|
Value
raw_sub_rho
returns a standard output of class rdiv
References
R. Reeve, T. Leinster, C. Cobbold, J. Thompson, N. Brummitt, S. Mitchell, and L. Matthews. 2016. How to partition diversity. arXiv 1404.6520v3:1–9.
Examples
pop <- data.frame(a = c(1,3), b = c(1,1))
row.names(pop) <- paste0("sp", 1:2)
pop <- pop/sum(pop)
meta <- metacommunity(pop)
# Calculate raw subcommunity rho diversity
raw_sub_rho(meta, 0:2)
[Package rdiversity version 2.2.0 Index]