lisa.perm | R Documentation |
Computes a permutation test to assess the statistical significance of Local Indicators of Spatial Association –LISA.
lisa.perm(x,listw,perm=999,FUN=mean,DESV=sd,...)
x |
A numeric vector |
listw |
A |
perm |
Number of permutations |
FUN |
By defautl |
DESV |
Dispersion statistic. Defaults to |
... |
Further arguments passed to |
This function implements a conditional permutation test to assess the statistical significance of the LISA. This is a distribution free test that overcomes the limitations of the standard assumption of normality.
Returns a numeric matrix
Ii |
Values of the Local Moran Statistics |
p-val |
Pseudo p-values |
Zi |
Standardized values of |
There is no theoretical nor simulation work assessing the behavior of the Local Moran Staistic when the measure of central tendency is different from the mean.
Osmar Leandro Loaiza Quintero
Anselin, Luc (1992) Local Indicators of Spatial Association.
bilisa.perm, plot.lisaPerm
data(usinc, package='spdyn')
require(spdep)
lw<-nb2listw(
poly2nb(usinc,queen=TRUE),style='W'
)
mylisa <- lisa.perm(usinc$X2009,listw=lw)
plot(mylisa,usinc)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.