I am currently doing mixed effects model analysis for a university project. I am currently trying to measure potential influences in my data using the following and become stuck with this error message in R.
alt.est.S <- influence(Smdl1,"subject")
Error in get(as.character(model@call)[3]) : object 'FALSE' not found.
My model is as follows:
Smdl1 <- lmer(midpoint~season+(1|subject),REML="FALSE")
Is there anything obvious here that stands out as reasoning for this error message? Any feedback would be really appreciated.