-
Notifications
You must be signed in to change notification settings - Fork 48
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
Warning when using Gamma distribution #609
Comments
There is a theoretical difficulty which makes it hard to implement in MixedModels.jl. lme4 can handle the gamma family, but note a few things:
|
Thank you for the response! I have a big dataset, hence Julia should be a good choice. I guess Is there any specific issue of |
@kirimaru-jp The fact that it's GPL'd and so any derivative work must be GPL'd, but MixedModels.jl is MIT-licensed, may pose a problem. It looks like @stevencarlislewalker is the only contributor to that particular file, so he may be willing to dual-license that one file to include the MIT license. Both lme4 and MixedModels have an nAGQ argument; the biggest difference is that lme4 re-uses I'm not sure that PIRLS is where the biggest problem is for the dispersion parameter. My suspicion is that there is an incorrect computation in the deviance (note that in the current formulation, the dispersion parameter doesn't play a role in the computation of the GLMM deviance, which seems ... wrong). Besides the licensing difficulties, one of the challenges in porting things from lme4 to MixedModels.jl is that the deviance computation is done very differently, e.g. in R We are of course thrilled about contributions, but I wanted to be straightforward about some of the the difficulties. 😄 |
It has unfortunately been too long since I've worked on mixed effects models and lme4.
I don't think that I even specified the license -- does this imply GPL? Anyways I'm quite happy to use MIT. Let me know if this moves forward and the license change is actually required.
I agree that it is wrong. Generally speaking the |
I'd like to run GLMMs using MixedModels.jl, assuming that the response variable follows some continuous distribution. To test, I followed an example here, with the newest version 4.6.2
It shown a warning
I checked the code, and I understand that when the distribution is not one of Bernoulli, Binomial, Poisson distributions, the warning shows up.
Is it a specific issue of MixedModels.jl, or a theoretical problem of GLMMs?
Does lme4 in R have the same trouble?
The text was updated successfully, but these errors were encountered: