Closed adw96 closed 2 years ago
Currently we use
if (!is.null(formula)) { ses <- data[,deparse(substitute(ses))] group_var <- lme4:::barnames(lme4::findbars(lme4:::RHSForm(formula))) groups <- data[,group_var] full_form <- lme4::subbars(formula) sm_form <- update(full_form, paste("~.-",group_var)) X <- stats::model.matrix(sm_form, data) chats <- stats::model.response(stats::model.frame(formula = sm_form, data = data)) }
in model_betta_random.R. We need a new alternative that doesn't use ::: calls to get back on CRAN. So
model_betta_random.R
lme4:::barnames
lme4:::RHSForm
need new versions.
Can I please have some support on this in the next week @MariaAVC @svteichman? 🙏
Addressed in pull requests #170 and #171
Currently we use
in
model_betta_random.R
. We need a new alternative that doesn't use ::: calls to get back on CRAN. Solme4:::barnames
lme4:::RHSForm
need new versions.
Can I please have some support on this in the next week @MariaAVC @svteichman? 🙏