Piecewise redundancy analysis (pwRDA)
Perform a pwRDA using the specified breakpoints
pwRDA(x.ord, y.ord, BPs, n.rand = 99)
x.ord
: ordered explanatory matrixy.ord
: ordered community matrixBPs
: community breakpointsn.rand
: The number of randomizations for significance computationReturns an invisible list of length 4:
..$summ
: summary statistics of the pwRDA analysis;..$rda.0
: full model cca object, which is described separately in vegan::cca.object
..$rda.pw
: pw model cca object, which is described separately in vegan::cca.object
data(sim1) sim1o<-OrdData(sim1$envi,sim1$comm) w50<-SMW(sim1o$yo, ws=50) sim1.pw<-pwRDA(sim1o$xo,sim1o$yo, BPs=bp(extract(w50)))
Danilo Candido Vieira