Produce an ASCII table showing: year, mean discharge, mean concentration, flow-normalized concentration, mean flux, and flow-normalized flux. Note that the flux and flow-normalized flux are rates and not a mass. As such a value for some period shorter than a full year could be larger than the value for a full year.
tableResults(eList, qUnit = 2, fluxUnit = 9, localDaily = NA)
results dataframe, if returnDataFrame=TRUE
dataframe with year, discharge, concentration, flow-normalized concentration, flux, and flow-normalized concentration columns. If the eList was run through WRTDSKalman, an additional column generalized flux is included.
named list with at least Daily and INFO dataframes
object of qUnit class. printqUnitCheatSheet
, or numeric represented the short code, or character representing the descriptive name.
object of fluxUnit class. printFluxUnitCheatSheet
, or numeric represented the short code, or character representing the descriptive name.
data frame to override eList$Daily
Can also procude a table for any Period of Analysis (individual months or sequence of months) using setPA
.
eList <- Choptank_eList
# Water Year:
# \donttest{
tableResults(eList, fluxUnit = 8)
df <- tableResults(eList, fluxUnit = 1)
df
# Spring:
eList <- setPA(eList, paStart = 3, paLong = 3)
tableResults(eList, fluxUnit = 1, qUnit = "cfs")
# }
Run the code above in your browser using DataLab