Skip to content
Prev 1022 / 20628 Next

is multicollinearity of fixed effects resolved by random effects

On Sun, May 18, 2008 at 5:35 AM, Reinhold Kliegl
<reinhold.kliegl at gmail.com> wrote:
I was thinking the same thing.  The total number of observations
wasn't stated in the original message and I think that would be
important in deciding exactly how to go about modeling the data.   If
Jordan could make the data available on a web site as a text file or a
saved R data object I think it would help focus the discussion.  If
that is not possible I would like to see the output of

table(table(ds$SPECIES))  # frequency table of number of observations
per species
xtabs(~ SITE, ds)             # table of number of observations per site

Also, I assume that LAT, MAT and MAP do not change within SITE so
there be at most 24 unique values for those covariates.  It might be
interesting to look at scatterplots, perhaps with just smoother lines
and not the points, if there would be a considerable amount of
overplotting.  That is

library(lattice)
xyplot(X13C ~ MAP, ds, type = c("g", "smooth"))  # repeat for MAT and LAT

Speculating in advance of seeing the data, which Sherlock Holmes
characterized as a "capital mistake", I would be inclined to start
with random effects of the form
   (1|SPECIES) + (1|SITE)
or
   (1|SPECIES/SITE)
which expands to
   (1|SPECIES) + (1|SITE:SPECIES)

It seems more likely to me that I would want random effects for the
800 species than for the 24 sites but I am committing the "capital
mistake" and will not speculate further.