Data ordering
Ordinates both community and explanatory matrices based on the first RDA score.
OrdData(x, y, axis = 1, method = NA, ...)
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
;An object of class "ord"
, which is a list consisting of:
data(sim1) sim1.o<-OrdData(x=sim1$envi, y=sim1$comm) sim1.o<-OrdData(x=sim1$envi, y=sim1$comm, method="hellinger")
Danilo Candido Vieira