Description Usage Arguments Value Author(s) References Examples
This function estimates baseflow.
1 | bf_oneparam(discharge, k)
|
discharge |
Numeric vector of daily flow data |
k |
Numeric value for the recession constant (dimensionless). |
Returns a numeric vector of the estimated baseflow.
Paul H. Whitfield
Eckhardt, K. 2005. How to construct recursive digital filters for baseflow separation methods. Journal of Hydrology 352: 168-173.
1 2 3 4 | data(cania.sub.ts)
res <- bf_oneparam(cania.sub.ts$Flow, k=0.9)
plot(cania.sub.ts$Date, cania.sub.ts$Flow, xlab="", ylab="Q (m3/s)", type="l")
points(cania.sub.ts$Date, res, type="l", col="blue")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.