iNEXTBetaDiv | R Documentation |
iNEXTBetaDiv
: Interpolation and extrapolation of Beta diversity with order q
iNEXTBetaDiv( data, q = c(0, 1, 2), datatype = "abundance", base = "coverage", level = NULL, nboot = 20, conf = 0.95 )
data |
(a) For |
q |
a numerical vector specifying the diversity orders. Default is c(0, 1, 2). |
datatype |
data type of input data: individual-based abundance data ( |
base |
Sample-sized-based rarefaction and extrapolation for gamma and alpha diversity ( |
level |
A numerical vector specifying the particular value of sample coverage (between 0 and 1 when |
nboot |
a positive integer specifying the number of bootstrap replications when assessing sampling uncertainty and constructing confidence intervals. Bootstrap replications are generally time consuming. Enter |
conf |
a positive number < 1 specifying the level of confidence interval. Default is |
A list of seven data frames, three for diversity and four for dissimilarity. Also, if more than one dataset is included, the list will contain one component for each dataset, and each component will be the list of seven data frames.
## abundance data & coverage-based data(beetle_abu) output1 = iNEXTBetaDiv(data = beetle_abu, datatype = 'abundance', nboot = 20, conf = 0.95) output1 ## incidence data & coverage-based data(beetle_inc) output2 = iNEXTBetaDiv(data = beetle_inc, datatype = 'incidence_raw', nboot = 20, conf = 0.95) output2 ## abundance data & size-based data(beetle_abu) output3 = iNEXTBetaDiv(data = beetle_abu, datatype = 'abundance', base = 'size', nboot = 20, conf = 0.95) output3 ## incidence data & size-based data(beetle_inc) output4 = iNEXTBetaDiv(data = beetle_inc, datatype = 'incidence_raw', base = 'size', nboot = 20, conf = 0.95) output4
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.