我正在尝试使用lme4
包在R中进行重复测量线性模型。
在此模型中,我有两个因变量(indiv
和bind
-都是连续的)和几个独立变量,包括education
(类别),politics
(类别),gender
(类别为M / F)和age
(连续)。
我输入以下方程式:
lmer.mod <- lmer(cbind(indiv, bind) ~ education*politics*Age*gender + (1|ID), data = morals)
summary(lmer.mod)
我收到以下错误消息
Error: number of levels of each grouping factor must be < number of observations
有人对为什么会发生这种情况以及如何解决它有任何想法吗?
谢谢!