-
-
Notifications
You must be signed in to change notification settings - Fork 64
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
Regression with Mixed Effects using OnlineStats.jl? #140
Comments
Linear mixed models can be fit via an EM algorithm, for which an online version exists: https://arxiv.org/abs/0712.4273 I won't have time to implement it, but would happily accept a PR! |
There is also a "Feasible algorithm for linear mixed model for massive data": |
Then we need the algorithm to be implemented on OnlineStats? Can't we just force any function/package to use OnlineStats to perform all its operations? |
I'm not sure what you're suggesting, but to work with OnlineStats, something needs to implement the interface in OnlineStatsBase. |
How can I run a regression with random effects using OnlineStats.jl?
For example I can use MixedModels.jl for this toy example:
But if I increase N to 30000 or my model is more complex they it gives an error.
How can I run it streaming the data to the disk or with any other trick?
The text was updated successfully, but these errors were encountered: