Log likelihood
110 次查看(过去 30 天)
显示 更早的评论
Hi!
I was wondering how to compute (which function to use) in Matlab the log likelihood but when the data is not normally distributed. Thanks!
Nuchto
0 个评论
采纳的回答
Tom Lane
2012-5-24
If you have the most recent release of the Statistics Toolbox:
>> x = poissrnd(4,20,1);
>> pd = fitdist(x,'poisson');
>> pd.NLogL
ans =
39.0221
If you do not:
>> mu = poissfit(x);
>> -sum(log(poisspdf(x,mu)))
ans =
39.0221
12 个评论
Tom Lane
2012-5-29
Sadly, it doesn't say much on its own. You could compare it to the likelihood of other fits.
Jessica Hopf
2023-3-3
Im curious where the documentation for pd.NLogL is? specifically, I can't find how you would know to do this without having found this answer
更多回答(2 个)
the cyclist
2012-5-22
编辑:John Kelly
2015-2-26
If you have the Statistics Toolbox, you can calculate the (negative) log likelihood for several functional forms.
For example, there is a betalike() function that will calculate the NLL for a beta function.
3 个评论
the cyclist
2012-5-23
I'm not sure I understand what you mean. When you say you can't "find" them, do you mean they are not in your version of MATLAB? Do you have the Statistics Toolbox?
Or do you mean that you see all those functions, but none of them are for the distribution you are trying to use?
Or do you mean something else?
Oleg Komarov
2012-5-24
You can try the following submission: http://www.mathworks.co.uk/matlabcentral/fileexchange/34943-fit-all-valid-parametric-probability-distributions-to-data
It will fit several distributions and should return the NLL (NegLogLik) for each.
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!