Return the name of the grouping factors from mixed effects models.
Value
A list of character vectors that represent the name(s) of the random effects (grouping factors). Depending on the model, the returned list has following elements:
random
, the "random effects" terms from the conditional part of modelzero_inflated_random
, the "random effects" terms from the zero-inflation component of the model
Examples
data(sleepstudy, package = "lme4")
sleepstudy$mygrp <- sample(1:5, size = 180, replace = TRUE)
sleepstudy$mysubgrp <- NA
for (i in 1:5) {
filter_group <- sleepstudy$mygrp == i
sleepstudy$mysubgrp[filter_group] <-
sample(1:30, size = sum(filter_group), replace = TRUE)
}
m <- lme4::lmer(
Reaction ~ Days + (1 | mygrp / mysubgrp) + (1 | Subject),
data = sleepstudy
)
#> boundary (singular) fit: see help('isSingular')
find_random(m)
#> $random
#> [1] "mysubgrp:mygrp" "mygrp" "Subject"
#>
find_random(m, split_nested = TRUE)
#> $random
#> [1] "mysubgrp" "mygrp" "Subject"
#>