
Maximum likelihood estimation of the 2-parameter Frechet distribution.
frechet(location = 0, lscale = "loglink", lshape = logofflink(offset = -2),
iscale = NULL, ishape = NULL, nsimEIM = 250, zero = NULL)
Numeric. Location parameter.
It is called
Link functions for the parameters;
see Links
for more choices.
See CommonVGAMffArguments
for information.
An object of class "vglmff"
(see vglmff-class
).
The object is used by modelling functions such as vglm
and vgam
.
Family function frechet
may fail for low values of
the shape parameter, e.g., near 2 or lower.
The (3-parameter) Frechet distribution has a density function
that can be written
Family frechet
has
Castillo, E., Hadi, A. S., Balakrishnan, N. Sarabia, J. S. (2005) Extreme Value and Related Models with Applications in Engineering and Science, Hoboken, NJ, USA: Wiley-Interscience.
# NOT RUN {
set.seed(123)
fdata <- data.frame(y1 = rfrechet(nn <- 1000, shape = 2 + exp(1)))
with(fdata, hist(y1))
fit2 <- vglm(y1 ~ 1, frechet, data = fdata, trace = TRUE)
coef(fit2, matrix = TRUE)
Coef(fit2)
head(fitted(fit2))
with(fdata, mean(y1))
head(weights(fit2, type = "working"))
vcov(fit2)
# }
Run the code above in your browser using DataLab