我想在我的模型中绘制术语的部分效果。
我使用了应该在effects
模型上运行的lmer
包,但是我得到了与模型对象类相关的错误。
以下是一个可重复的例子:
library(lme4)
library(effects)
fm1 <- lmer(Reaction ~ Days + (Days|Subject), sleepstudy) #sleepstudy is an example dataset in lme4
plot(effect("Days", fm1))
# Error in plot(effect("Days", fm1)) :
# error in evaluating the argument 'x' in selecting a method for function 'plot': Error in # UseMethod("effect", mod) :
# no applicable method for 'effect' applied to an object of class "c('lmerMod', 'merMod')"
我做错了什么?