Skip to content
Prev 16006 / 20628 Next

post-hoc tests of lmerTest models using lsmeans

Try detaching the lmerTest package before using lsmeans.

This is what worked for me on a similar problem:

detach(package:lmerTest)

my_lsm <- lsmeans(Dp.reduced.fm, ~ Emotion|Go_NoGo)

pairs(my_lsm)

That gives pairwise comparisons of emotions at each level of Go_NoGo, with
the Tukey p value adjustment.

Hope this helps.

Regards,

Chuck
On Wed, Nov 29, 2017 at 4:32 PM, Yuqi Liu <yliu at psych.udel.edu> wrote: