Description Usage Arguments Examples
Flexible Flow Normalization
1 2 | flexFN(eList, dateInfo, sampleStart = "sampleSegStart",
flowStart = "flowSegStart", flowEnd = "flowSegEnd")
|
eList |
named list with at least the Daily, Sample, and INFO dataframes |
dateInfo |
data frame with 3 columns, their names defined by sampleStart, flowStart, flowEnd |
sampleStart |
integer vector of start years (water) for each FN conc/flux segment |
flowStart |
integer vector of start years (water) for flow normalization |
flowEnd |
integer vector of end years (water) for flow normalization |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | 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)
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)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.