D.sq {asbio} | R Documentation |
Mahalanobis distance for two sites using a pooled covariance matrix
Description
Allows much easier multivariate comparisons of groups of sites then provided by the function mahalanobis
in the base
library.
Usage
D.sq(g1, g2)
Arguments
g1 |
Community vector for site 1 |
g2 |
Community vector for site 2 |
Author(s)
Ken Aho
References
Legendre, P, and L. Legendre (1998) Numerical Ecology, 2nd English Edition. Elsevier, Amsterdam, The Netherlands.
See Also
Examples
g1<-matrix(ncol=3,nrow=3,data=c(1,0,3,2,1,3,4,0,2))
g2<-matrix(ncol=3,nrow=3,data=c(1,2,4,5,2,3,4,3,1))
D.sq(g1,g2)$D.sq
[Package asbio version 1.9-7 Index]