I recently updated to R version 3.5.0 and R Studio version 1.1.447 (Mac El Capitan 10.11.6). When I try to tidy (with the package broom) an object created with the package 'lmerTest' I get an error message:
Error in vector(type, length) :
vector: cannot make a vector of mode 'NULL'.
In earlier versions I didn't have this problem, this is what i did, which let to the error message:
library(lmerTest)
data(sleepstudy)
lmm1 <- lmer(Reaction ~ Days + (Days | Subject), sleepstudy)
library(broom)
tidy(lmm1)
Does anyone know a fix for this or can anyone maybe give an explanation what happens or what the issue is? When I use the lme4 package, all still works (but I want it to work with the 'lmerTest'-package).