Learn R Programming

diathor (version 0.0.6)

diat_lobo: Calculates the Lobo Index (LOBO)

Description

The input for all of these functions is the resulting dataframe (resultLoad) obtained from the diat_loadData() function A CSV or dataframe cannot be used directly with these functions, they have to be loaded first with the diat_loadData() function so the acronyms and species' names are recognized References for the index:

  • Lobo, E. A., Callegaro, V. L. M., & Bender, E. P. (2002). Utiliza<U+00E7><U+00E3>o de algas diatom<U+00E1>ceas epil<U+00ED>ticas como indicadoras da qualidade da <U+00E1>gua em rios e arroios da Regi<U+00E3>o Hidrogr<U+00E1>fica do Gua<U+00ED>ba, RS, Brasil. Edunisc.

  • Lobo, E. A., Bes, D., Tudesque, L., & Ector, L. (2004). Water quality assessment of the Pardinho River, RS, Brazil, using epilithic diatom assemblages and faecal coliforms as biological indicators. Vie et Milieu, 54(2-3), 115-126.

Sample data in the examples is taken from:

  • Nicolosi Gelis, Mar<U+00ED>a Mercedes; Cochero, Joaqu<U+00ED>n; Donadelli, Jorge; G<U+00F3>mez, Nora. 2020. "Exploring the use of nuclear alterations, motility and ecological guilds in epipelic diatoms as biomonitoring tools for water quality improvement in urban impacted lowland streams". Ecological Indicators, 110, 105951. https://doi.org/10.1016/j.ecolind.2019.105951

Usage

diat_lobo(resultLoad)

Arguments

resultLoad

The resulting list obtained from the diat_loadData() function

Examples

Run this code
# NOT RUN {
# Example using sample data included in the package (sampleData):
data("diat_sampleData")
# First, the diat_loadData() function has to be called to read the data
# The data will be stored into a list (loadedData)
# And an output folder will be selected through a dialog box if resultsPath is empty
# In the example, a temporary directory will be used in resultsPath
df <- diat_loadData(diat_sampleData, resultsPath = tempdir())
loboResults <- diat_lobo(df)
# }

Run the code above in your browser using DataLab