sigmaLowFlows {discharge} | R Documentation |
Estimate catastrophic flow variability
Description
Calculates catastrophic variability for low flow events. Negative residuals from the seasonal signal are used to calculate \sigma.lf
, the standard deviation of low-flow events.
Usage
sigmaLowFlows(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.droughts |
Number of independent events with negative residuals. |
sigma.lfa |
Estimated sigma using the y-intercept. |
sigma.lfb |
Estimated sigma using the slope ( |
drought.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
sigmaHighFlows
Examples
# load data
data(sycamore)
# get streamflow object
sf = asStreamflow(sycamore)
# estimate catastrophic low flow variability
sigmaLowFlows(sf)