Skip to content
Prev 14173 / 20628 Next

Plotting means and error bars for fixed effects in a ME model

I think both the effects and lsmeans packages can do this for you:

library(effects)
as.data.frame(effect("Condition", m.1))

library(lsmeans)
lsmeans(m.1, "Condition")
On Sun, Feb 7, 2016 at 4:51 PM, Ch? Lucero <chelucero at uchicago.edu> wrote: