tableResults | R Documentation |
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)
eList |
named list with at least Daily and INFO dataframes |
qUnit |
object of qUnit class. |
fluxUnit |
object of fluxUnit class. |
localDaily |
data frame to override eList$Daily |
Can also procude a table for any Period of Analysis (individual months or sequence of months) using setPA
.
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.
eList <- Choptank_eList
# Water Year:
tableResults(eList, fluxUnit = 8)
df <- tableResults(eList, fluxUnit = 1)
df
# Spring:
eList <- setPA(eList, paStart = 3, paLong = 3)
tableResults(eList, fluxUnit = 1, qUnit = "cfs")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.