unimoran | R Documentation |
This function computes the value of the Univariate Global Moran Statistic.
unimoran(x,listw,CENT=mean,DESV=sd)
x |
A numeric vector. |
listw |
A list of spatial weights as provided by |
CENT |
Central tendency statistic used to compute the Moran Statistic.
Defaults to |
DESV |
Dispersion statistic. Defaults to |
The unimoran
function computes the value of the Univariate Global Moran Statistic.
Morevoer, it generalizes the estimation of spatial autocorrelation, as this function
allows to use alternative measures of central tendency and of dispersion. However,
it should be noted that analytical results regarding the behavior of spatial autocorrelation
are only available in the literature when the central tendency and the dispersion are measured as
the mean and standard deviation, respectively.
Osmar Leandro Loaiza Quintero
Anselin, Luc (1995). Local Indicators of Spatial Association. Geographical Analysis
bilisa.perm, unimoran, bimoran.test
data(usinc)
require(spdep)
lw<-nb2listw(
poly2nb(usinc,queen=TRUE),style='W'
)
unimoran(usinc$X2009, listw=lw)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.