RegioHill {flood} | R Documentation |
Regional EVI estimator
Description
Estimation of the positive extreme value index (EVI) based on multiple local Hill estimators. We assume heavy-tail homogeneity, i.e., all local EVI's are the same.
Usage
RegioHill(x, k, k.qu = 20, type = "evopt", alpha = 0.05, ci = "nonlog")
Arguments
x |
Vector or matrix of observations |
k |
Number of relative excesses involved in the estimation of the extreme value
index gamma. If
|
k.qu |
Tuning parameter for estimation of empirical variance; only needed if |
type |
Choose either |
alpha |
Confidence level for confidence interval. |
ci |
Either |
Value
List of
-
est
a weighted average of local Hill estimates. -
Sigma
an estimate of the corresponding variance matrix. -
CI
a confidence interval.
Examples
library("evd")
x1 <- rgev(150, loc = 2, scale = 1, shape=0.4)
hill(x1, k=20)
x2 <- rgev(100, loc = 2.5, scale = 1, shape=0.4)
x2 <- c(x2, rep(NA, 50))
x <- cbind(x1, x2)
k <- c(40, 30)
RegioHill(x, k)