I have specified a mixed effect linear model with lmer
and I don't know how to specify the contrasts for it. In my data I have a Condition
with two levels, while in each Condition
I have 20-20 Players
. In each condition I present 7 Scenario
s which can be evaluated 7 times in Trials
. Thus Condition
and Scenario
are fixed effects, with random effects Player
and Trial
, where Trial
s are nested inside each Scenario
.
My model looks like this:
my_null.model <- lmer(value ~ Condition+Scenario+ (1+Scenario|Player) +
(1|Scenario/Trial), data = mydata, REML=FALSE,
control=lmerControl(optCtrl=list(maxfun=50000)) )
my.model <- lmer(value ~ Scenario*Condition + (1+Scenario|Player) +
(1|Scenario/Trial), data = mydata, REML=FALSE,
control=lmerControl(optCtrl=list(maxfun=50000)) )
anova(my_null.model, my.model)
I get significant ANOVA results, but I would like to know which Scenario
s are different and which Trials
as well.
I tried to use lsmeans
from lmerTest
, which outputs the Least Squares Means but I am not sure how to interpret the result.
Least Squares Means table:
Scenario Est. Standard Err. DF t-value Lower CI Upper CI p-value
Scenario 1 1.0 47.46 3.44 38.1 13.79 40.5 54.4 <2e-16
Scenario 2 2.0 42.04 3.14 38.1 13.39 35.7 48.4 <2e-16
Scenario 3 3.0 61.22 3.63 38.4 16.85 53.9 68.6 <2e-16
Scenario 4 4.0 68.35 3.27 38.4 20.93 61.7 75.0 <2e-16
Scenario 5 5.0 24.81 3.11 38.0 7.97 18.5 31.1 <2e-16
Scenario 6 6.0 41.59 4.12 38.2 10.11 33.3 49.9 <2e-16
Scenario 7 7.0 78.65 3.28 38.4 23.97 72.0 85.3 <2e-16
And how do I compare the individual Trial
s?