Find names of random slopes
Return the name of the random slopes from mixed effects models.
find_random_slopes(x)
x |
A fitted mixed model. |
A list of character vectors with the name(s) of the random slopes, or
NULL
if model has no random slopes. Depending on the model, the
returned list has following elements:
random
, the random slopes from the conditional part of model
zero_inflated_random
, the random slopes from the zero-inflation component of the model
if (require("lme4")) { data(sleepstudy) m <- lmer(Reaction ~ Days + (1 + Days | Subject), data = sleepstudy) find_random_slopes(m) }
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.