-
Notifications
You must be signed in to change notification settings - Fork 188
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
Log-likelihood for discrete Weibull distribution #58
Comments
Hi there and sorry for the slow response. Very happy for the contribution and I'm surprised and impressed that someone took their time to think about this issue too, because I sure did. I was worried that my definition may cause off-by one errors and confusion, but after trying out the alternative it caused more confusion for me in the long run when alternating between discrete/continuous time.
I read your interpretation as us disagreeing on how to index intervals - zero or 1 based.
To me this seemed to make more sense but it's really a matter of taste. Again, thanks for the kind words. |
Also, see my comments on #59 |
So, if I understand you correctly, then for non-censored data ( |
There seems to be an issue with log-likelihood for discrete Weibull distribution with censored data (u=0).
According to equation (2.7) in Proposition 2.26 of your great thesis, the likelihood in this case is
L_d = Pr(T_d > t) = Pr(T >= t+1) for t in {0,1,2,...}
However, I do believe that it should be
L_d = Pr(T_d >= t) = Pr(T >= t) for t in {0,1,2,...}
[Sorry, I have found no way to use TeX here]
Arguments are following. Assume u=0 and tte=0 for some fixed day. It means that the next event might occur at any day after that fixed day, so the probability should be equal to 1. In your case it's strictly lower than 1.
The text was updated successfully, but these errors were encountered: