rich(matrix, verbose = FALSE, nrandom = NULL)
matrix
is a typical species-sample matrix. Rows correspond to samples whereas columns stand for species.verbose=FALSE
, a simplied output is returned.nrandom != FALSE
):
cr.obs
Observed cumulative richness, equal to cr
above.
cr.boot
Mean of the bootstrap values.
cr.bcorr
Mean of the bootstrap values corrected for the bias estimated below.
cr.bias
Bias.
cr.se
Standard error of the cumulative richness estimated by bootstrap. This is estimated as the standard deviation of the bootstrap values.
cr.lbn
Lower bound of the first order normal approximation confidence interval (see boot.ci {boot}
).
cr.ubn
Upper bound of the first order normal approximation confidence interval (see boot.ci {boot}
).nrandom != FALSE
):
mr.obs
Observed mean richness, equal to mr
above.
mr.boot
Mean of the bootstrap values.
mr.bcorr
Mean of the bootstrap values corrected for the bias estimated below.
mr.bias
Bias.
mr.se
Standard error of the mean richness estimated by bootstrap. This is estimated as the standard deviation of the bootstrap values.
mr.lbn
Lower bound of the first order normal approximation confidence interval (see boot.ci {boot}
).
mr.ubn
Upper bound of the first order normal approximation confidence interval (see boot.ci {boot}
).richvec
corresponds to mr
(available if verbose == TRUE
).rich
as the matrix
argument (available if verbose == TRUE
).rich
as the matrix
argument (available if verbose == TRUE
).verbose == TRUE
).verbose == TRUE
).verbose == TRUE
).rich
computes basic descriptive statistics from typical species by sample data sets.rarc, raref2, raref
data(ef)
# No bootstrap statistics
rich(matrix=ef)
# Bootstrap estimation based on 499 randomizations
rich(matrix=ef, nrandom=499)
Run the code above in your browser using DataLab