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="equal")
stoichFiltered <- filterSTOICH(dataTables=stoichData,
var="Latitude",
val=c(54.1, 103.1),
condition="range")
stoichFiltered <- filterSTOICH(dataTables=stoichData,
var="Type.OrganismStoichiometry",
val="seston",
condition="equal")
stoichFiltered <- filterSTOICH(dataTables=stoichData,
var="Name",
val=c("Suggs", "Barco"),
condition="contains")
stoichTable <- joinSTOICH(stoichFiltered)
}
Run the code above in your browser using DataLab