Last chance! 50% off unlimited learning
Sale ends in
A simple function to compute Moran's I, called by moran.test
and moran.mc
;
moran(x, listw, n, S0, zero.policy=NULL, NAOK=FALSE)
a numeric vector the same length as the neighbours list in listw
a listw
object created for example by nb2listw
number of zones
global sum of weights
default NULL, use global option value; if TRUE assign zero to the lagged value of zones without neighbours, if FALSE assign NA
if 'TRUE' then any 'NA' or 'NaN' or 'Inf' values in x are passed on to the foreign function. If 'FALSE', the presence of 'NA' or 'NaN' or 'Inf' values is regarded as an error.
a list of
Moran's I
sample kurtosis of x
Cliff, A. D., Ord, J. K. 1981 Spatial processes, Pion, p. 17.
# NOT RUN {
data(oldcol)
col.W <- nb2listw(COL.nb, style="W")
crime <- COL.OLD$CRIME
str(moran(crime, col.W, length(COL.nb), Szero(col.W)))
is.na(crime) <- sample(1:length(crime), 10)
str(moran(crime, col.W, length(COL.nb), Szero(col.W), NAOK=TRUE))
# }
Run the code above in your browser using DataLab