View source: R/graph-lmomplot.R
lmomplot | R Documentation |
Plots of sample L-Skewness ans L-Kurtosis estimates at various thresholds for peaks over threshold modelling, using the Generalized Pareto parametrization.
lmomplot(data, u.range, nt = max(50, length(data)), identify = TRUE,
...)
data |
A numeric vector. |
u.range |
A numeric vector of length two, giving the limits for the thresholds at which the model is fitted. |
nt |
The number of thresholds at which the sample L-moments are evaluated. |
identify |
Logical. If |
... |
Other arguments to be passed to the model fit
function |
For each thresholds, sample L-skewness and L-kurtosis are computed. If data are GP distributed, one have :
\tau_4 = \frac{\tau_3 \left( 1 + 5 \tau_3 \right)}{5 + \tau_3}
So, a threshold is acceptable if sample \left(\tau_3,
\tau_4\right)
are near the theoretical curve.
L-moments plot are really difficult to interpret. It can help us to say if the GP distribution is suited to model data.
Mathieu Ribatet
Hosking, J. R. M. and Wallis, J. R. (1997) Regional Frequency Analysis. Cambridge University Press.
Begueria, S. (2005) Uncertainties in partial duration series modelling of extremes related to the choice of the threshold value. Journal of Hydrology, 303(1-4): 215–230.
fitgpd
, mrlplot
,
tcplot
data(ardieres)
ardieres <- clust(ardieres, 4, 10 / 365, clust.max = TRUE)
flows <- ardieres[, "obs"]
lmomplot(flows, identify = FALSE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.