OrdData: Data ordering

Description Usage Arguments Value Author(s) Examples

View source: R/OrdData.R

Description

Ordinates both community and explanatory matrices based on the first RDA score.

Usage

1
OrdData(x, y, axis = 1, method = NA, ...)

Arguments

x

explanatory matrix;

y

community matrix;

axis

the RDA axis in which the ordering should be based. Defaults to axis=1

method

standardization method (described in decostand) to be applied on y before the RDA analysis. If NA (default), no transformation is performed.

...

furhter parameters passed to decostand and vegan::rda;

Value

An object of class "ord", which is a list consisting of:

  1. xo: the ordered explanatory matrix

  2. yo: the ordered community matrix (non-transformed)

  3. x: the original explanatory matrix

  4. y: the original community matrix

Author(s)

Danilo Candido Vieira

Examples

1
2
3
data(sim1)
sim1.o<-OrdData(x=sim1$envi, y=sim1$comm)
sim1.o<-OrdData(x=sim1$envi, y=sim1$comm, method="hellinger")

segRDA documentation built on July 31, 2019, 9:03 a.m.