Skip to content
Prev 1073 / 7419 Next

multiple regression

Nathan,

Species richness is categorical, so if your richness values are
usually low (say < 20), you should consider the use of Poisson GLM, or
log-transform your response (and log is the canonical link function
for Poisson GLM). This usually improves the model fit. And this might
apply to abundance as well.

If you use lm(), you can inspect the residual variance of the models
after excluding one of the covariates. The increase in residual
variance compared to the full model will tell which variance component
is higher (explains more of your data). Or you may as well inspect the
anova() table of the fitted model (both for lm or glm).

Best,

Peter

P?ter S?lymos
Alberta Biodiversity Monitoring Institute
Department of Biological Sciences
CW 405, Biological Sciences Bldg
University of Alberta
Edmonton, Alberta, T6G 2E9, Canada
Phone: 780.492.8534
Fax: 780.492.7635
On Sat, Feb 6, 2010 at 9:17 AM, Nathan Lemoine <lemoine.nathan at gmail.com> wrote: