View source: R/kalman_functions.R
plotTimeSlice | R Documentation |
Plot of either concentration or flux over time showing both the WRTDS and WRTDSKalman estimates.
plotTimeSlice(eList, start = NA, end = NA, conc = TRUE, fluxUnit = 3,
usgsStyle = FALSE)
eList |
named list with at least the Daily, Sample, and INFO dataframes. This
eList must be run through |
start |
numeric start of DecYear for plot. If |
end |
numeric end of DecYear for plot. If |
conc |
logical. If |
fluxUnit |
number representing entry in pre-defined fluxUnit class array. |
usgsStyle |
logical option to use USGS style guidelines. Setting this option to TRUE does NOT guarantee USGS compliance. It will only change automatically generated labels |
In the plot title, Ratio of means is mean of WRTDSKalman estimates to the WRTDS Classic estimates. Ratio only calculated on the data shown in the figure, not the whole series. In the plot, red dots are measured values, blue dots are plotted at the reporting limit for those values that are censored.
eList <- Choptank_eList
eList <- WRTDSKalman(eList, niter = 10)
plotTimeSlice(eList, start = 1990, end = 1991, conc = TRUE)
plotTimeSlice(eList, start = 1990, end = 1991, conc = FALSE)
plotTimeSlice(eList, start = NA, end = 1991, conc = FALSE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.