Extracting model params/equivalent of broom tidiers in julia?

coeftable, coef, coefnames, stderror, ranef, raneftables, etc. are all mentioned in the docs and have docstrings for online help. There currently isn’t a confint method defined (though that will likely change soon); instead you can compute the shortest coverage interval with shortestcovint on the results of the parametric bootstrap.

In addition to MixedModels itself, there are a number of related packages with their own documentation, e.g. MixedModelsSim, MixedModelsExtras, and MixedModelsMakie. For MixedModelsMakie, you’ll need to load an appropriate Makie backend, e.g. CairoMakie or GLMakie.

There is also JellyMe4 which provides RCall support for MixedModels, enabling you to move models back and forth between Julia’s MixedModels and R’s lme4, which gives you access to the entire R ecosystem.

Finally, @dmbates, @kliegl and I regularly teach a course on MixedModels. The materials are hosted under the RePsychLing organization on GitHub: RePsychLing · GitHub

2 Likes