开发者

Log Likelihood using R

开发者 https://www.devze.com 2023-01-28 10:33 出处:网络
I have a probability density function (PDF) 开发者_如何学Go (1-cos(x-theta))/(2*pi) theta is the unknown parameter. How do I write a log likelihood function for this PDF? I am confused; the x will

I have a probability density function (PDF)

开发者_如何学Go
(1-cos(x-theta))/(2*pi)

theta is the unknown parameter. How do I write a log likelihood function for this PDF? I am confused; the x will come from my data, but how do I handle the theta in the equation. Thanks


You need to use an optimisation or maximisation function in R to compute the value of theta that maximises the log-likelihood. See help(nlmin) for starters.


The function you wrote is a likelihood function of theta given the known x:

ll(theta|x) = log((1-cos(x-theta))/(2*pi))

if you have many iid observations from this distribution, x1,x2,...xn just take the sum of the above:

ll(theta|x1,x2,...) = Sum[log((1-cos(xi-theta))/(2*pi))]


If f(x_i) = (1-cos(x_i-theta))/(2*pi) for observation i, then likelihood function L(Theta)=product(f(x_i)) and logL(theta)=sum(f(x_i)), of course assuming that x_i are independent.


I think log-likelihood only works for normal-distributions. The special property of the log-function is, that it cancels out the exp-function, but here's no exp-function.

Btw., your PDF is periodic and theta just manipulates the phase of that function. Where does this PDF come from? What should it describe?

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号