RestInd | R Documentation |
The function allows to compute the Suitability Index (SI) and Reliability Index (RI) for a seed mixture or
donor grassland composition to be used in a restoration site based on topographic features: elevation, slope and aspect.
see vignettes for additional details and examples
RestInd(trainingDB = NULL, composition, elevation, slope, aspect)
trainingDB |
dataframe with the species eligible for the statistical modelling, selected on the basis of their
frequency and abundance in the vegetation and topographical variables database. Each species is associated with the
values of topographic variables (elevation, slope and aspect) and its abundance. Default is NULL. When NULL, the
training database is derived from 4081 vegetation surveys carried out in Piedmont Region, (North-Western Italy), which it
includes 248 plant species eligible for modeling. A customized training database can be generated
with |
composition |
dataframe with the seed mixture or donor grassland composition. It
consists of two columns: 1) species code abbreviated in CEP names format and 2) abundance
of the species. When "trainingDB" is NULL, the species CEP names are retrievable from
|
elevation |
Elevation of restoration site, expressed in meters above sea level (m a.s.l.) |
slope |
Slope of restoration site, expressed in degrees (°) |
aspect |
Aspect of restoration site, expressed in degrees from North (°N) |
A list with three outputs:
DESCRIPTIVES: dataframe with the descriptive information related to modeled plant species:
Species name in CEP format
Full species name
Number of observations of each species selected for modeling
Minimum elevation at which a species occurred
Maximum elevation at which a species occurred
Minimum slope at which a species occurred
Maximum slope at which a species occurred
Minimum southness value at which a species occurred
Maximum southness value at which a species occurred
SPECIES ABUNDANCES: dataframe with the following information:
Species name in CEP format
Full species name
Predicted Maximum Abundance. It is the maximum achievable abundance of a species in the restoration site, as predicted by the best model
Predicted Optimal Abundance. It is the maximum achievable abundance of a species in its optimal ecological condition, based on all possible combinations of elevation, slope and southness.
Ratio between the PMA and POA. This ratio indicates how far (ratio = 0) or close (ratio = 1) a species is from its ecological optimum.
R square adjusted of the best Generalized Additive Model
Root Mean Squared Error of the best Generalized Additive Model
Seed mixture or Donor grassland Abundance. Abundance of a species listed in the seed mixture or donor grassland composition imported by the user and eligible for modeling
Expected Abundance. The highest achievable abundance of a species in a restoration site, based on how far the species is from the ecological optimum (i.e. computed from the multiplication of SmDgA by the ratio)
INDEXES:
Suitability Index (SI). Suitability of a seed mixture or donor grassland to restore a site with specific topographic characteristics. It ranges between 0 and 1. When SI=0 the restoration site is totally beyond the optimal ecological ranges of all species of the seed mixture or donor grassland, which is therefore not appropriate for the site restoration. Conversely, when SI=1 the restoration site has the optimal ecological conditions for all species of the seed mixture or donor grassland, which is therefore perfectly appropriate for the site restoration.
Reliability Index (RI). Index of the reliability of the Suitability Index (SI). The RI ranges between 0 and 1. When RI is close to 0 it means that few to none species contribute to the computation of the SI, whereas when RI is close to 1 the SI is computed with most to all species. Therefore, the higher is the RI, the most reliable is the SI. Not all the species of the seed mixture and donor grassland composition may modeled as i) they can be missing from the training database or ii) the values of the topographic factors of the restoration site are beyond their ecological ranges (e.g. if the elevation of the restoration site is 250 m and a species as an elevation range bounded between 1000 and 3000 m, such a species cannot be modeled).
#creation of seed mixture dataframe by retrieving species CEP names from ResNatSeed::cep.piem
mixture_composition<-data.frame(species=c("Festrubr","Chaehirs","Phleprat","Onobmont"),
sc=c(5,40,20,20))
#run function
ResNatSeed::RestInd(trainingDB = NULL,
composition = mixture_composition,
elevation = 1500,
aspect = 30,
slope = 5)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.