I am trying to plot in only one panel the lines and confidence intervals of my linear mixed model, but I get 2 panels. How do I change this?
f is a factor with 2 levels, c is a continuous variable
If I use multiline=TRUE, I loose the confidence intervals, which I need.
mymodel = lmer(depvar ~ f*c+ (0 + f+c|pp) + (1|stim), data = datafile2)
allEffects(mymodel)# call the particular model you want to see all the effect of
plot(allEffects(mymodel))