bimoran | R Documentation |
This function computes the value of the Bivariate Global Moran Statistic
bimoran(x,y=NULL,listw,perm=999,CENT=mean,DESV=sd)
x |
Either a numeric vector or a numeric matrix with two columns. If |
y |
A numeric vector. This is the variable to be spatially lagged.
If |
listw |
A list of spatial weights as provided by |
perm |
Number of permutations. |
CENT |
Central tendency statistic used to compute the Moran Statistic.
Defaults to |
DESV |
Dispersion statistic. Defaults to |
The bimoran
function computes the value of the Bivariate Global Moran Statistic.
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'
)
bimoran(x=usinc$X2007, y=usinc$X2009, listw=lw)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.