multispati.randtest: Multivariate spatial autocorrelation test (in C)

Description Usage Arguments Details Value Author(s) References See Also Examples

Description

This function performs a multivariate autocorrelation test.

Usage

1
multispati.randtest(dudi, listw, nrepet = 999)

Arguments

dudi

an object of class dudi for the duality diagram analysis

listw

an object of class listw for the spatial dependence of data observations

nrepet

the number of permutations

Details

We note X the data frame with the variables, Q the column weights matrix and D the row weights matrix associated to the duality diagram dudi. We note L the neighbouring weights matrix associated to listw. This function performs a Monte-Carlo Test on the multivariate spatial autocorrelation index :

r = trace(t(X)DLXQ) / trace(t(X)DXQ)

Value

Returns an object of class randtest (randomization tests).

Author(s)

Daniel Chessel
S?bastien Ollier sebastien.ollier@u-psud.fr

References

Smouse, P. E. and Peakall, R. (1999) Spatial autocorrelation analysis of individual multiallele and multilocus genetic structure. Heredity, 82, 561–573.

See Also

dudi,mat2listw

Examples

1
2
3
4
5
6
7
8
if (requireNamespace("maptools", quiet = TRUE) & requireNamespace("spdep", quiet = TRUE)) {
    data(mafragh)
    maf.listw <- nb2listw(neig2nb(mafragh$neig))
    maf.pca <- dudi.pca(mafragh$mil, scannf = FALSE)
    multispati.randtest(maf.pca, maf.listw)
    maf.pca.ms <- multispati(maf.pca, maf.listw, scannf=FALSE)
    plot(maf.pca.ms)
}

ade4 documentation built on May 2, 2019, 5:50 p.m.