Last chance! 50% off unlimited learning
Sale ends in
pGEV(q, xi, mu = 0, sigma = 1)
qGEV(p, xi, mu = 0, sigma = 1)
dGEV(x, xi, mu = 0, sigma = 1, log = FALSE)
rGEV(n, xi, mu = 0, sigma = 1)
fit.GEV(maxima, ...)
logical
, whether log values of density should be returned,
default is FALSE
.vector
, block maxima datanumeric
, location parameter.integer
, count of random variates.vector
, probabilities.vector
, quantiles.numeric
, scale parameter.vector
, values to evaluate density.numeric
, shape parameter.optim()
.fit.GEV()
.GPD
quantValue <- 4.5
pGEV(q = quantValue, xi = 0, mu = 1.0, sigma = 2.5)
pGumbel(q = quantValue, mu = 1.0, sigma = 2.5)
## Fitting to monthly block-maxima
data(nasdaq)
l <- -returns(nasdaq)
em <- timeLastDayInMonth(time(l))
monmax <- aggregate(l, by = em, FUN = max)
mod1 <- fit.GEV(monmax)
Run the code above in your browser using DataLab