Skip to content
Prev 10341 / 20628 Next

Nested and/or crossed and 2 level random factor

Linda B?rgi <patili_buergi at ...> writes:
I agree with you and disagree with the reviewer (since the effect of
season could be expected to be similar in each year).  If you were
using lme4 you could considering making the year-by-season interaction
as a random effect (how many seasons are there?), e.g. (1|year:season)
Absolutely.   If bushes are uniquely labeled then what you've
suggested is fine, otherwise you would want random~1|bush:location
to distinguish among (e.g.) bush 2 in location 1 and bush 2 in location 2
Did you try an observation-level random effect?
 
  I'm a little concerned about the specification of parasitism:
it seems as though it's probably a proportion rather than a
binary variable (i.e. you sampled multiple individuals per
bush:location:season:year combination, and counted how many
were parasitized), in which case you should be including
the denominator (total) somewhere in your specification, either
as a response  cbind(n_parasitized,n_unparasitized) or by
including a 'weights' argument giving the total sample size
for each observation.