| life | R Documentation |
This function calculates the Lotic-invertebrate Index for Flow Evaluation index (LIFE).
life(
x,
method = "extence",
abucl = c(1, 9, 99, 999, 9999),
agg = FALSE,
fs_scores = NULL,
exceptions = NULL,
traceB = FALSE
)
x |
Result of |
method |
Possible choices are |
abucl |
Log abundance categories. Treshold are set to 1, 9, 99, 999 and 9999 as in the original paper of Extence et al. (1999). |
agg |
This option allows the composite family approach. It can be |
fs_scores |
Scores (fs) for different abundance categories of taxa associated with flow groups 1-4. A custom |
exceptions |
Taxa that to be excluded from the calculation. This option can be useful, for instance, to exclude an alien species belonging to an autochthonous family. |
traceB |
if set to |
Lotic-invertebrate Index for Flow (LIFE) was originally proposed by Extence et al. (1999). biomonitoR implements the Extence et al. (1999) version called extence and the version currently used in UK called life_2017.
If agg is set to TRUE the following composite families are used for extence:
Psychomyiidae (inc. Ecnomidae)
Rhyacophilidae (inc. Glossomatidae)
Ancylidae (inc. Acroloxidae)
Gammaridae (inc. Crangonyctidae)
Planariidae (inc. Dugesidae)
Hydrobiidae (inc. Bithyniidae)
while for life_2017 the following are used:
Hydrophilidae (inc. Georissidae, Helophoridae, Hydrochidae)
life() automatically check for parent-child pairs in the scoring system, see the return section for a definition.
All the information used for LIFE calculation can be retrieved with the function show_scores.
If traceB is set to TRUE a list with the following elements will be returned:
results Results of life().
taxa_df The data.frame used for the calculation containing the abundance of taxa receiving a score.
abu_df The data.frame containing scores and abundance classes for each site.
life_df The data.frame used for the calculation containing scores for each site.
composite_taxa Taxa aggregated following the aggregation of the default method or set in agg.
exceptions A data.frame containing the changes made by excluding the taxa included in exceptions.
parent_child_pairs For instance in Spanish bmwp both Ferrissia and Planorbidae receive a score.
Abundances of the higher taxonomic level need therefore to be adjusted by subtracting the abundances of the lower taxonomic level.
We thank Carol Fitzpatrick, Richard Chadd, Judy England and Rachel Stubbington for providing us with the most updated LIFE scores and algorithms.
Extence CA, Balbi DM, Chadd RP. 1999. River flow indexing using British benthic macroinvertebrates: a framework for setting hydroecological objectives. Regulated Rivers: Research and Management 15: 543-574.
as_biomonitor
data(macro_ex)
data_bio <- as_biomonitor(macro_ex)
data_agr <- aggregate_taxa(data_bio)
life(data_agr)
# change abundance classes
life(data_agr, abucl = c(1, 9, 99, 999))
# provide your own score system. Scores and aggregation rules are for example purpose only.
life_fg <- data.frame(
Taxon = c("Ephemerellidae", "Leuctridae", "Chironomidae"),
FG_Score = c(1, 2, 3)
)
life_acc <- data.frame(Taxon = "Ephemerellidae", Correct_Taxon = "Chironomidae")
fs_scores <- data.frame(
FS = rep(1:3, each = 3), ABUCLASS = rep(1:3, 3),
SCORE = c(9, 10, 11, 8, 9, 10, 7, 7, 7)
)
# without aggregation rules
life(data_agr, method = life_fg, fs_scores = fs_scores, traceB = TRUE)
# with aggregation
life(data_agr, method = life_fg, agg = life_acc, fs_scores = fs_scores, traceB = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.