View source: R/egret_objects.R
as.egret | R Documentation |
Create a named list with the INFO, Daily, and Sample dataframes, and surface matrix. If any of these are not available, an NA should be
as.egret(INFO, Daily, Sample = NA, surfaces = NA)
INFO |
dataframe containing the INFO dataframe |
Daily |
dataframe containing the daily data |
Sample |
dataframe containing the sample data |
surfaces |
matrix returned from |
eList named list with Daily, Sample, and INFO dataframes, along with the surfaces matrix. Any of these values can be NA, not all EGRET functions will work with missing parts of the named list eList.
readNWISDaily
, readNWISSample
eList <- Choptank_eList
Daily <- getDaily(eList)
INFO <- getInfo(eList)
eList_flowHistory <- as.egret(INFO, Daily)
plotFlowSingle(eList_flowHistory, 1)
Sample <- getSample(eList)
surfaces <- getSurfaces(eList)
eList_full <- as.egret(INFO, Daily, Sample, surfaces)
plotFluxQ(eList_full)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.