Compute species diversity with a particular of sample size/coverage
estimateD
: computes species diversity (Hill numbers with q = 0, 1 and 2) with a particular user-specified level of sample size or sample coverage.
estimateD(x, datatype = "abundance", base = "size", level = NULL, conf = 0.95)
x |
a |
datatype |
data type of input data: individual-based abundance data ( |
base |
comparison base: sample-size-based ( |
level |
an value specifying a particular sample size or a number (between 0 and 1) specifying a particular value of sample coverage.
If |
conf |
a positive number < 1 specifying the level of confidence interval, default is 0.95. Remove C.I. by setting conf=NULL. |
a data.frame
of species diversity table including the sample size, sample coverage,
method (rarefaction or extrapolation), and diversity estimates with q = 0, 1, and 2 for the user-specified sample size or sample coverage.
data(spider) estimateD(spider, "abundance", base="size", level=NULL, conf=0.95) estimateD(spider, "abundance", base="coverage", level=NULL, conf=0.95) data(ant) estimateD(ant, "incidence_freq", base="coverage", level=0.985, conf=NULL)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.