Skip to content
Prev 13072 / 20628 Next

Output glmer

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
On 15-03-10 07:01 AM, Davide Bellone wrote:
First of all, I would caution against stepwise deletion (see e.g.
Frank Harrell's book _Regression Modeling Strategies_, or Google
"stepwise regression problems"
Second, I would suggest that you leave the "Model$" out of your
formula, and that you recognize that * incorporates both main effects
and interactions: your model can be written more simply as

  y ~ Manage + age + veg + wood + under + veg:Manage + veg:age +
      under:wood + under:veg + (1|Site) + (1|obs)

or even

  y ~ veg*(Manage+age + under) + under*wood + (1|Site) + (1|obs)

(there is one redundant term here -- the main effect of under is
incorporated in both terms -- but R will take care of dropping it
automatically)

or better, retain all two-way interactions:

  y ~ (veg+Manage+age+under+wood)^2 + (1|Site) + (1|obs)
What do you mean by the "real value of the estimates"?  I think you
might want to take a look at the lsmeans or effects packages, or you
could use predict() to compute the expected outcome for some
particular combination of factors ...

  The question about contrasts/interpretation of parameters in linear
or generalized linear models is not really specific to mixed models.
Maybe take a look at Crawley's book, or Faraway's ...
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)

iQEcBAEBAgAGBQJU/vVpAAoJEOCV5YRblxUHGMQH/3HMpXDO7Zouj4hBEPX9O9lm
1x6czZa+SQSCphKT01WevbT0wjLgFwaBhwfE/cFKbqr6YLsD5TsC3iG6FK5qzmob
Mmm1nWl1L04ZI7lPVkfH07UTDUNyQlToagPFuZYs/g+HlOx7vlQ44VgWIgTnGA3X
bmEtorIDF2n6PZvnMothJZrrri+0dOQBrFFDpdACpCR0zsGFQ4oJP5VJsW3mE40M
pqolU3CRMxO5Q9GzPO2I+P+IMb0rIj6Ke1ADdnkx1rt0QZcnndhFyA4wHk/rJwoQ
2NBXSgy+dBsX479CgCoS4aIJBTevUoHZ/S9SAAapoq8XAruEVwxPpYGxYqC1fMk=
=lwqn
-----END PGP SIGNATURE-----