| stats | R Documentation |
Computes representativeness and confidence statistics for a forest inventory. Summarizes inventory coverage, estimates absolute stand parameters per hectare with uncertainty (density, volume, basal area), and extrapolates results to the total habitat area, including sample-size requirements for target permissible errors.
stats(obj, area.tot, prob = 0.95, shape.factor = 1, rm.dead = FALSE)
obj |
An object of class |
area.tot |
Total habitat area (in hectares) to which estimates will be extrapolated (e.g., the whole forest fragment). Required. |
prob |
Confidence level used to compute t-based confidence limits
(default |
shape.factor |
Stem form correction factor used in the individual volume
calculation ( |
rm.dead |
Logical. If |
Extracts the sample-unit (SU) identifier, taxon label, height/length variable,
and “dead” code from obj$vars, and the surveyed (inventoried) area from
obj$global. If rm.dead = TRUE, individuals flagged as dead are
removed before analysis.
Individual volume is computed as V_i = abi \times h \times shape.factor,
where abi and h are columns present in obj$data. Per-SU
totals of volume and basal area are converted to per-hectare values using the
SU area. The function then derives, for density (ADe), volume (AVol), and basal
area (ABA):
mean, variance, standard deviation, standard error;
coefficient of variation (CV);
absolute and relative sampling error (based on the t quantile with |SU| - 1 df);
lower and upper confidence limits per hectare.
Inventory representativeness (total area, number/area of SUs, and percentage inventoried)
is reported, and population totals (for area.tot) are produced with corresponding
confidence limits. Required numbers of SUs to attain 10% and 20% permissible
relative errors are computed from standard finite-population sampling formulae.
A list with three components:
inventory: data frame summarizing inventory coverage
(fields Stat and Values).
ha: data frame of per-hectare statistics for stand parameters
(fields Stat, ADe, AVol, ABA).
population: data frame of population-level statistics for the
total area (area.tot), including required numbers of SUs for
10% and 20% permissible errors.
Representativeness is reported both as inventoried area (ha) and as percentage of the total area.
The number of SUs required for a target permissible error depends on the
observed variance, the SU area, and the chosen confidence level (prob).
Rodrigo Augusto Santinelo Pereira raspereira@usp.br
FAO (1981). Manual of Forest Inventory—With Special Reference to Mixed Tropical Forests. Food and Agriculture Organization of the United Nations, Rome.
## Creating the param object containing the phytosociological parameters
quadrat.param <- phytoparam(x = quadrat.df, measure.label = "CBH",
taxon = "Species", dead = "Morta", family = "Family",
circumference = TRUE, su = "Plot", height = TRUE,
su.size = 25, rm.dead = FALSE)
## Calculating the statistics
stats(obj = quadrat.param, area.tot = 4)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.