Skip to content
Prev 6575 / 20628 Next

tree diameter growth

Dear Bin Yue,

you've described a pretty interesting modelling effort.  It's true
that determining what should be a fixed and what should be a random
effect is laregly up to the analyst, but different interpretations
will be available from these different choices.  You may find it worth
reading the Hierarchical Models chapter in my icebreakeR document
(freely available online), 

http://www.ms.unimelb.edu.au/~andrewpr/r-users/icebreakeR.pdf

or Chapter 7 of "Forest Analytics in R", both of which discuss fixed
and random effects fomr a forestry point of view.

I would tend to think that the following model is worth trying:

gr1 <- lmer(log(dbh.y)-log(dbh.x) ~ 
            scale(log(dbh.x)) + classsizedist + 
            (scale(log(dbh.x)) | spcode),
            data = livestem)

My reasoning is as follows.  First, the goal is to determine the
effect of different size-class distributions on growth.  I think that
you'd probably like to be able to represent these estimates and
discuss them.  To me it seems natural to make them fixed effects.

Second, one could argue for the species effect to be fixed or random.
Increasingly I see people fitting species as a random effect, and in
this case, it makes sense to me.  However, note that I'm allowing for
each species to have a different growth trajectory.  I would suspect
that there would be species-specific variation in the growth rates as
a function of size; this term will allow for that contingency.

I hope that these thoughts are useful to you.

Andrew
On Fri, Aug 19, 2011 at 04:46:41PM +0800, Bin Yue wrote: