Is it possible to plot the random intercept or slope of a mixed model when it has more than one predictor?
With one predictor I would do like this:
#generate one response, two predictors and one factor (random effect)
resp<-runif(100,1, 100)
pred1<-c(resp[1:50]+rnorm(50, -10, 10),resp[1:50]+rnorm(50, 20, 5))
pred2<-resp+rnorm(100, -10, 10)
RF1<-gl(2, 50)
#gamm
library(mgcv)
mod<-gamm(resp ~ pred1, random=list(RF1=~1))
plot(pred1, resp, type="n")
for (i in ranef(mod$lme)[[1]]) {
abline(fixef(mod$lme)[1]+i, fixef(mod$lme)[2])
}
#lmer
library(lme4)
mod<-lmer(resp ~ pred1 + (1|RF1))
plot(pred1, resp, type="n")
for (i in ranef(mod)[[1]][,1]) {
abline(fixef(mod)[1]+i, fixef(mod)[2])
}
But what if I have a model like this instead?:
mod<-gamm(resp ~ pred1 + pred2, random=list(RF1=~1))
Or with lmer
mod<-lmer(resp ~ pred1 + pred2 + (1|RF1))
Should I consider all the coefficients or only the ones of the variable that I'm plotting?
Thanks
NOTE that you should probably not be trying to fit a random effect for an grouping variable with only two levels -- this will almost invariably result in an estimated random-effect variance of zero, which will in turn put your predicted lines right on top of each other -- I'm switching from
gl(2,50)
togl(10,10)
...The development version of
lme4
has apredict()
function that makes this a little easier ...pred1
withpred2
equal to its mean, and vice versa. This is all a little bit cleverer than it needs to be, since it generates all the values for both focal predictors and plots them with ggplot in one go ...()
pred1
and generating predictions for a (small/discrete) range ofpred2
values ...()
You might want to set
scale="free"
in the lastfacet_wrap()
... or usefacet_grid(~pred2,labeller=label_both)
For presentation you might want to replace the
colour
aesthetic, withgroup
, if all you want to do is distinguish among groups (i.e. plot separate lines) rather than identify them ...