Skip to content
Prev 10543 / 20628 Next

Help with Interpretation of LMER Output--Correctly Formatted Post (I Hope)

AvianResearchDivision <segerfan83 at ...> writes:
Is this from lmerTest?  Otherwise, how are you getting p-values 
on the fixed effects ... ?
By the way, the main effects Environ and NT are redundant (but
harmless) here: Environ*NT is equivalent to Environ+NT+Environ:NT
(main effects plus interaction), so you could write the fixed effects
as Environ*NT+Year
(Intercept)    3882.30      146.14       26.565    < 2e-16 ***
Sum Sq     Mean Sq    F value    Denom  Pr(>F)
Note that these are mostly questions about basic R model formulations,
not specific to mixed models.  The answers are specific to the
default "treatment" contrasts.
If you used default treatment contrasts, LF is the effect in the
baseline level (NT1).
LF *in the baseline level* (NT1, Environ=0) is 227.81 lower in Year 2012
than in Year 2011 *in the baseline level*
NT1 (in the base level: Year 2011, Environ=0)
Because the combined significance of all the individual Environ-by-NT
interactions is significant.
You should probably read a more general treatment of model formulation
and contrasts in R, e.g. Faraway's book on linear regression (I believe
there's a version in the 'contributed documentation' section on CRAN).

  good luck
    Ben Bolker