Fits gumbel distribution (GEV with xi = 0) to block maxima data.
gumbel(data, block =NA,...)
Arguments
data: data vector. Interpretation depends on value of block: if no block size is specified then data are interpreted as block maxima; if block size is set, then data are interpreted as raw data and block maxima are calculated.
block: the block size. A numeric value is interpreted as the number of data values in each successive block. All the data is used, so the last block may not contain block observations. If the data has a times attribute containing (in an object of class "POSIXct", or an object that can be converted to that class; see as.POSIXct) the times/dates of each observation, then block may instead take the character values "month", "quarter", "semester" or "year".
...: arguments passed to optim
Returns
An object of class "gev" describing the fit and including parameter estimates and standard errors. Fitting is carried out using maximum likelihood.
Details
This function is primarily intended for comparison with GEV for assessing the need for a heavy-tailed Frechet (or short-tailed Weibull) to model block maxima.
See Also
plot.gev, gev, optim, as.POSIXct
Examples
# Fit Gumbel to maxima of blocks of 100 observationsdata(bmw)out <- gumbel(bmw,100)# Fit Gumbel to the data in nidd.annual, the annual maximum water # levels of the River Nidd, using the "BFGS" optimization methoddata(nidd.annual)out <- gumbel(nidd.annual, method ="BFGS", control = list(maxit =500))