Checks if a model is a mixed effects model
Small helper that checks if a model is a mixed effects model, i.e. if it the model has random effects.
is_mixed_model(x)
x |
A model object. |
A logical, TRUE
if x
is a mixed model.
data(mtcars) model <- lm(mpg ~ wt + cyl + vs, data = mtcars) is_mixed_model(model) if (require("lme4")) { data(sleepstudy) model <- lmer(Reaction ~ Days + (1 | Subject), data = sleepstudy) is_mixed_model(model) }
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.