gpd.tem | R Documentation |
The function gpd.tem
provides a tangent exponential model (TEM) approximation
for higher order likelihood inference for a scalar parameter for the generalized Pareto distribution. Options include
scale and shape parameters as well as value-at-risk (also referred to as quantiles, or return levels)
and expected shortfall. The function attempts to find good values for psi
that will
cover the range of options, but the fit may fail and return an error. In such cases, the user can try to find good
grid of starting values and provide them to the routine.
gpd.tem(
dat,
param = c("scale", "shape", "quant", "VaR", "ES", "Nmean", "Nquant"),
psi = NULL,
m = NULL,
threshold = 0,
n.psi = 50,
N = NULL,
p = NULL,
q = NULL,
plot = FALSE,
correction = TRUE
)
dat |
sample vector for the GP distribution |
param |
parameter over which to profile |
psi |
scalar or ordered vector of values for the interest parameter. If |
m |
number of observations of interest for return levels. See Details. Required only for |
threshold |
threshold value corresponding to the lower bound of the support or the location parameter of the generalized Pareto distribution. |
n.psi |
number of values of |
N |
size of block over which to take maxima. Required only for |
p |
tail probability, equivalent to |
q |
level of quantile for N-block maxima. Required only for |
plot |
logical indicating whether |
correction |
logical indicating whether spline.corr should be called. |
As of version 1.11, this function is a wrapper around gpd.pll
.
The interpretation for m
is as follows: if there are on average m_y
observations per year above the threshold, then m = Tm_y
corresponds to T
-year return level.
an invisible object of class fr
(see tem
in package hoa
) with elements
normal
: maximum likelihood estimate and standard error of the interest parameter \psi
par.hat
: maximum likelihood estimates
par.hat.se
: standard errors of maximum likelihood estimates
th.rest
: estimated maximum profile likelihood at (\psi
, \hat{\lambda}
)
r
: values of likelihood root corresponding to \psi
psi
: vector of interest parameter
q
: vector of likelihood modifications
rstar
: modified likelihood root vector
rstar.old
: uncorrected modified likelihood root vector
param
: parameter
Leo Belzile
set.seed(123)
dat <- rgp(n = 40, scale = 1, shape = -0.1)
#with plots
m1 <- gpd.tem(param = 'shape', n.psi = 50, dat = dat, plot = TRUE)
## Not run:
m2 <- gpd.tem(param = 'scale', n.psi = 50, dat = dat)
m3 <- gpd.tem(param = 'VaR', n.psi = 50, dat = dat, m = 100)
#Providing psi
psi <- c(seq(2, 5, length = 15), seq(5, 35, length = 45))
m4 <- gpd.tem(param = 'ES', dat = dat, m = 100, psi = psi, correction = FALSE)
mev:::plot.fr(m4, which = c(2, 4))
plot(fr4 <- spline.corr(m4))
confint(m1)
confint(m4, parm = 2, warn = FALSE)
m5 <- gpd.tem(param = 'Nmean', dat = dat, N = 100, psi = psi, correction = FALSE)
m6 <- gpd.tem(param = 'Nquant', dat = dat, N = 100, q = 0.7, correction = FALSE)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.