Skip to content
Back to formatted view

Raw Message

Message-ID: <CA81A2D6.18336%jari.oksanen@oulu.fi>
Date: 2011-08-29T17:11:02Z
From: Jari Oksanen
Subject: RDA vegan: correlation coefficient among environment variables, species axes and environmental axes results
In-Reply-To: <C34E02AA1C5F1D438F9882A390653EF20464D1B0@pesca2.pesca.local>

On 29/08/11 19:14 PM, "Oscar Galli" <ogalli at dinara.gub.uy> wrote:

> Hi, I'm doing the redundance analysis as a method of ordination between
> spawning of the species and environmental variables. Anyone know how I
> can do to get in the summary of the RDA the correlation coefficient
> among environment variables, species axes and environmental axes results
> estimates by RDA and the eigenvalues species-environment correlations?.
> 
Oscar,

I'm not quite sure what all these are, but the following may give some of
the things you asked:

## make a reproducible example
library(vegan)
data(varespec)
data(varechem)
mod <- rda(varespec ~  Al + P + K, varechem)
## species--environment correlation
spenvcor(mod)
## "interset" correlation
intersetcor(mod)
## correlations among constraints (why?)
cor(model.frame(mod))

HTH, 

Jari Oksanen