Skip to content
Prev 13599 / 20628 Next

Interpretation of GLMM output in R

Dear Paul, Thierry and list members,
first of all: 
Thanks so much for going through my questions, although it came in an
inappropriate look with wired brackets and? unspecified questions. Apologies for that. So I
try again to specify things.

The model includes following variables:
Pollinator = pollinator offspring
Parasitoids = parasitoid offspring
Volume = measured fig size 
tree? = tree ID

This is the output of the model:

?fad <-glmer(Pollinator~Parasitoids+volume+(1|tree),data=fad.data,family="poisson",verbose=TRUE)
Generalized linear mixed model fit by maximum likelihood (Laplace Approximation) ['glmerMod']
?Family: poisson? ( log )
Formula: Pollinator ~ Parasitoids + volume + (1 | tree)
?? Data: fad.data

???? AIC????? BIC?? logLik deviance df.resid 
? 1550.6?? 1560.2?? -771.3?? 1542.6?????? 76 

Scaled residuals: 
??? Min????? 1Q? Median????? 3Q???? Max 
-7.4825 -2.4111 -0.4725? 2.4321? 9.3409 

Random effects:
?Groups Name??????? Variance Std.Dev.
?tree?? (Intercept) 0.1063?? 0.3261? 
Number of obs: 80, groups:? tree, 8

Fixed effects:
????????????? Estimate Std. Error z value Pr(>|z|)??? 
(Intercept)? 2.3167832? 0.1634876? 14.171?? <2e-16 ***
Parasitoids -0.0046908? 0.0022169? -2.116?? 0.0344 *? 
volume?????? 0.0069527? 0.0006197? 11.220?? <2e-16 ***
---
Signif. codes:? 0 ?***? 0.001 ?**? 0.01 ?*? 0.05 ?.? 0.1 ? ? 1

Correlation of Fixed Effects:
??????????? (Intr) Prstds
Parasitoids -0.144?????? 
volume????? -0.656 -0.139

1. I want to know if the predictor variables have an effect on pollinator
offspring. Therefore, I tested if? ?Parasitoids? and? ?volume? are important factors in the model by the LRT.

fad1 <- glmer(Pollinator~1+volume+(1|tree),data=fad.data,family="poisson",verbose=TRUE)
fad2 <- glmer(Pollinator~Parasitoids+1+(1|tree),data=fad.data,family="poisson",verbose=TRUE)

anova(fad,fad1)
Models:
fad1: Pollinator ~ 1 + volume + (1 | tree)
fad: Pollinator ~ Parasitoids + volume + (1 | tree)
???? Df??? AIC??? BIC? logLik deviance? Chisq Chi Df Pr(>Chisq)? 
fad1? 3 1553.1 1560.3 -773.57?? 1547.1?????????????????????????? 
fad?? 4 1550.6 1560.2 -771.32?? 1542.6 4.5105????? 1??? 0.03369 *
anova(fad,fad2)
Models:
fad2: Pollinator ~ Parasitoids + 1 + (1 | tree)
fad: Pollinator ~ Parasitoids + volume + (1 | tree)
???? Df??? AIC??? BIC? logLik deviance? Chisq Chi Df Pr(>Chisq)??? 
fad2? 3 1669.2 1676.4 -831.61?? 1663.2???????????????????????????? 
fad?? 4 1550.6 1560.2 -771.32?? 1542.6 120.59????? 1? < 2.2e-16 ***
2. From suggestions of Thierry and Paul and from the the caterpillar plot:
dotplot(ranef(fad, condVar=TRUE))$tree
I do understand that there is indeed a fairly large remaining variability in the number of pollinator offspring? among trees, but
the relative effect of ?tree? does not depend on ?Parasitoids? and ?volume?. 
Again, I would highly appreciate your suggestions and feedback on this. Thank you very much in advance.
Best wishes,Yvonne

________________________________