Is it possible to force a lmer model with random effect to be fitted on data with only one level? We want to do this to keep the same model structure in rare case where our data only contains 1 grouping level. The following illustrate the error.
library(lme4)
#> Loading required package: Matrix
sleepstudy$Subject <- as.character(sleepstudy$Subject)
ss <- sleepstudy[sleepstudy$Subject == "308", ]
m1 <- lmer(Reaction~Days+(1|Subject), ss)
#> Error: grouping factors must have > 1 sampled level
It is to be noted that we are fixing the variance (see previous question: Fixing variance values in lme4). Hence, we do not need to estimate the variance.