Description Usage Arguments Examples
Flexible Flow Normalization Plot Add On
1 | flexPlotAddOn(eList, showArrows = TRUE, showRect = TRUE)
|
eList |
named list with at least the Daily, Sample, and INFO dataframes |
showArrows |
logical whether or not to show arrows representing flow segments |
showRect |
logical whether or not to show rectangles representing sample segments |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | library(EGRET)
eList <- Choptank_eList
eList <- setUpEstimation(eList)
sampleSegStart <- c(1980,1990,2000)
flowSegStart <- c(1980,1985,1992)
flowSegEnd <- c(1994,2004,2011)
dateInfo <- data.frame(sampleSegStart, flowSegStart, flowSegEnd)
eList <- flexFN(eList, dateInfo)
plotFluxHist(eList)
flexPlotAddOn(eList)
eList <- Choptank_eList
eList <- setUpEstimation(eList)
sampleSegStart <- c(1980,1985,2000)
flowSegStart <- c(1980,1990,2000)
flowSegEnd <- c(1990,2000,2010)
dateInfo <- data.frame(sampleSegStart, flowSegStart, flowSegEnd)
eList <- flexFN(eList, dateInfo)
plotFluxHist(eList)
flexPlotAddOn(eList)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.