Hi,
I'm trying to use ezPlot2 to plot error bars based on the model predictions of the following model:
model.rduration=lmer(relduration~focus+(1+focus|item)+(1+focus|participant), data=acoustics)
preds = ezPredict(
fit = model.rduration
, zero_intercept_variance = FALSE
)
pd = ezPlot2(
preds
, x = .(focus)
)
pd=pd+theme_bw(18)
print(pd)
According to the model there is a highly significant effect:
Fixed effects:
Estimate Std. Error t value
(Intercept) -0.03850 0.04052 -0.950
focusPredicate -0.06963 0.01469 -4.741
But based on the error bars the difference looks non-significant (attached).
Am I doing something wrong?
Thanks,
Michael