sigmaHighFlows {discharge} | R Documentation |
Estimate catastrophic flow variability
Description
Calculates catastrophic variability for high flow events. Positive residuals from the seasonal signal are used to calculate \sigma.hf
, the standard deviation of high-flow events.
Usage
sigmaHighFlows(x, resid.column)
Arguments
x |
An object of class |
resid.column |
Optional numeric specifiying which column contains residuals. Required if |
Value
An object of class list
with items
n.floods |
Number of independent events with positive residuals. |
sigma.hfa |
Estimated sigma using the y-intercept. |
sigma.hfb |
Estimated sigma using the slope ( |
flood.line |
Matrix containing fitted, observed, and residual values from regression of log counts on bin midpoints. |
onesigma.events |
matrix containing information for all events below |
twosigma.events |
matrix containing information for all events below |
See Also
independentEvents
sigmaLowFlows
Examples
# load data
data(sycamore)
# get streamflow object
sf = asStreamflow(sycamore)
# estimate catastrophic high flow variability
sigmaHighFlows(sf)