-
Notifications
You must be signed in to change notification settings - Fork 422
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature request: fit(Weibull, rand(100)) #702
Comments
The basic code could be something like,
where you replace the |
According to https://en.wikipedia.org/wiki/Weibull_distribution#Parameter_estimation and the paper, the MLE for Weibull doesn't have a closed form solution and requires numerical methods. Would it be ok to add a dependency on Optim? According to #698 the answer was no. |
By the way here is a functional generic MLE fit using ForwardDiff for the derivatives in Optim.
|
Hi,
This is a newbie question, thus I might ask in the wrong repo or wrong place in general.
I am porting a Matlab project to Julia. In Matlab they used
histfit(data,nbins,'weibull')
function. I am actually looking something to replace the histfit function and found Julia fit. Any help is appreciated.The text was updated successfully, but these errors were encountered: