Currently simulate(object, formula = formula) only allows at most two different formulas, in a named list with the names "correct" or "wrong". It would be better to allow custom names and any number of formulas. eg
f <- list("3_lvl_correct" = "y ~ treatment * time + (1 + time | subject) + (time | cluster)",
"3_lvl_no_cor" = "y ~ treatment * time + (1 + time | subject) + (time || cluster)",
"2_lvl" = "y ~ treatment * time + (1 + time | subject)"
)
Currently
simulate(object, formula = formula)
only allows at most two different formulas, in a named list with the names "correct" or "wrong". It would be better to allow custom names and any number of formulas. eg