Predict unconditional extreme quantiles using peaks over threshold
Source:R/EVT_utils.R
predict_unconditional_quantiles.Rd
Predict unconditional extreme quantiles using peaks over threshold
Usage
predict_unconditional_quantiles(interm_lvl, quantiles = c(0.99), Y, ntest = 1)
Value
Named list containing:
- predictions
matrix of dimension
ntest
timeslength(quantiles)
containing the estimated extreme quantile at levelsquantile
, repeatedntest
times,- pars
matrix of dimension
ntest
times2
containing the two GPD parameter MLEs, repeatedntest
times.- threshold
The threshold for the peaks-over-threshold GPD model. It is the empirical quantile of
Y
at levelinterm_lvl
, i.e.stats::quantile(Y, interm_lvl)
.