我有一个使用lmList
生成的线性回归列表(来自lme4),类似于here所做的:
现在我想使用ANOVA比较这些模型。
我试过这个:
anova(models_list)
但我明白了:
Error in UseMethod("anova") :
no applicable method for 'anova' applied to an object of class" c('lmList4', 'list', 'vector')"
然后我尝试了这个:
anova.lmlist(models_list)
但是我收到一条错误,说它无法找到此功能,即使是it appears to be part of the base stats package。