find_random_slopes: Find names of random slopes

View source: R/find_random_slopes.R

find_random_slopesR Documentation

Find names of random slopes

Description

Return the name of the random slopes from mixed effects models.

Usage

find_random_slopes(x)

Arguments

x

A fitted mixed model.

Value

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

Examples


data(sleepstudy, package = "lme4")
m <- lme4::lmer(Reaction ~ Days + (1 + Days | Subject), data = sleepstudy)
find_random_slopes(m)


easystats/insight documentation built on Oct. 2, 2024, 8:19 a.m.