I am not sure, what model should I use for this data:
- ID - participant ID
- Trial - 60 for each participant
- Memory - between subject binary factor
- State - within subject binary factor
- Rating -the judgment made by participant after each trial on four point Likert scale
TargetPosition - the angle of the target. It's random effect.
Difficulty - 6 point scale equal to the number of items simultaneously displayed on the screen. The difficulty rose, when participant performed well, and vice versa (Staircase).
I'm interested in: how Memory, State and Rating impact the Difficulty. The ID, Trial and TargetPosition are all out of interest.
What I was thinking about:
model = glmer(Difficulty ~ (1|ID) + (1|TargetPosition)
+ Memory * State * Rating, data, family=poisson)
I'm especially not sure whether poisson is the right choice and whether I add random effects correctly.
(this is a study I asked about previously, but different model)