as.egret {EGRET} | R Documentation |
Create named list for EGRET analysis
Description
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
Usage
as.egret(INFO, Daily, Sample = NA, surfaces = NA)
Arguments
INFO |
dataframe containing the INFO dataframe |
Daily |
dataframe containing the daily data |
Sample |
dataframe containing the sample data |
surfaces |
matrix returned from |
Value
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.
See Also
Examples
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)
[Package EGRET version 3.0.9 Index]