fit.Weibull {bda} | R Documentation |
To compute the maximum likelihood estimates of the parameters of a 2-parameter Weibull distribution.
fit.Weibull(x, dist="Weibull")
x |
A vector of raw data, or a histogram or binned data. |
dist |
Distribution type: |
## raw data x <- rweibull(100, 2, 1) fit.Weibull(x) ## binned data data(hhi) hmob <- binning(counts=hhi$mob, breaks=hhi$breaks) fit.Weibull(hmob, dist="weibull") fit.Weibull(hmob, dist="gwd") fit.Weibull(hmob, dist="ewd")