Learn R Programming

stoichUtilities (version 1.0.2)

joinSTOICH: Join STOICH Data Tables

Description

Joins the STOICH data tables from release files into a single table.

Usage

joinSTOICH(dataTables)

Value

A single table merged from the individual STOICH data tables.

Arguments

dataTables

The STOICH data tables loaded using loadSTOICH.

Author

Chad Petersen cpetersen4@unl.edu

Examples

Run this code
if (FALSE) {
# Load the data
stoichData <- loadSTOICH(dataPath="C:/Users/example_user/STOICH_data_location")

# filtering by table such as:
stoichFiltered <- filterSTOICH(dataTables=stoichData,
                               var="TrophicMode",
                               val="photoautotroph",
                               condition="not equal") |>
  filterSTOICH(dataTables=stoichFiltered,
               var="Latitude",
               val=c(104.92, 103.01),
               condition="range")

stoichTable <- joinSTOICH(stoichFiltered)

}

Run the code above in your browser using DataLab