weibull(lshape = "loge", lscale = "loge",
ishape = NULL, iscale = NULL, nrfs = 1,
probs.y = c(0.2, 0.5, 0.8), imethod = 1, zero = -2)
Links
for more choices.CommonVGAMffArguments
."vglmff"
(see vglmff-class
).
The object is used by modelling functions such as vglm
,
and vgam
.cenweibull()
. It is currently being written and will use
SurvS4
as input.
It should be released in later versions of
If the shape parameter is less than two then misleading inference may
result, e.g., in the summary
and vcov
of the object.
This lshape = logoff(offset = -2)
.
Common values of the shape parameter lie between 0.5 and 3.5.
Summarized in Harper et al. (2011), for inference, there are 4 cases to consider. If $a \le 1$ then the MLEs are not consistent (and the smallest observation becomes a hyperefficient solution for the location parameter in the 3-parameter case). If $1 < a < 2$ then MLEs exist but are not asymptotically normal. If $a = 2$ then the MLEs exist and are normal and asymptotically efficient but with a slower convergence rate than when $a > 2$. If $a > 2$ then MLEs have classical asymptotic properties.
The 3-parameter (location is the third parameter) Weibull can
be estimated by maximizing a profile log-likelihood (see,
e.g., Harper et al. (2011) and Lawless (2003)), else try
gev
which is a better parameterization.
Johnson, N. L. and Kotz, S. and Balakrishnan, N. (1994) Continuous Univariate Distributions, 2nd edition, Volume 1, New York: Wiley.
Lawless, J. F. (2003) Statistical Models and Methods for Lifetime Data, 2nd ed. {Hoboken, NJ, USA: John Wiley & Sons}.
Rinne, Horst. (2009) The Weibull Distribution: A Handbook. Boca Raton, FL, USA: CRC Press.
Gupta, R. D. and Kundu, D. (2006) On the comparison of Fisher information of the Weibull and GE distributions, Journal of Statistical Planning and Inference, 136, 3130--3144.
Harper, W. V. and Eschenbach, T. G. and James, T. R. (2011) Concerns about Maximum Likelihood Estimation for the Three-Parameter {W}eibull Distribution: Case Study of Statistical Software, The American Statistician, 65(1), {44--54}.
Smith, R. L. (1985) Maximum likelihood estimation in a class of nonregular cases. Biometrika, 72, 67--90.
Smith, R. L. and Naylor, J. C. (1987) A comparison of maximum likelihood and Bayesian estimators for the three-parameter Weibull distribution. Applied Statistics, 36, 358--369.
dweibull
,
truncweibull
,
gev
,
lognormal
,
expexp
.
gumbelII
.wdata <- data.frame(x2 = runif(nn <- 1000)) # Complete data
wdata <- transform(wdata,
y1 = rweibull(nn, shape = exp(1 + x2), scale = exp(-2)),
y2 = rweibull(nn, shape = exp(2 - x2), scale = exp( 1)))
fit <- vglm(cbind(y1, y2) ~ x2, weibull, data = wdata, trace = TRUE)
coef(fit, matrix = TRUE)
vcov(fit)
summary(fit)
Run the code above in your browser using DataLab