return.level {hkevp} | R Documentation |
The associated return level
Description
Computation of the associated return level with given period and GEV parameters.
Usage
return.level(period, loc, scale, shape)
Arguments
period |
An integer indicating the wished return period T. |
loc |
A numerical value or vector for the GEV location parameter. Must be of length one or same length as |
scale |
A numerical value or vector for the GEV scale parameter. Must be of length one or same length as |
shape |
A numerical value or vector for the GEV shape parameter. Must be of length one or same length as |
Details
The -year return level is a common value of risk in Extreme Value Theory. It represents the value that is expected to be exceeded once over
years by the annual maxima. Given the parameters
,
and
of the GEV distribution associated to the yearly maxima, we can compute the associated
-return level
by:
Value
A numerical value or a numerical vector, depending on the input arguments loc
, scale
, shape
Author(s)
Quentin Sebille
Examples
return.level(period = 100, loc = 1, scale = 1, shape = 1)
return.level(period = 200, loc = 1:10, scale = 1, shape = 0)