data(oldcol)
geary.test(spNamedVec("CRIME", COL.OLD), nb2listw(COL.nb, style="W"))
geary.test(spNamedVec("CRIME", COL.OLD), nb2listw(COL.nb, style="W"),
randomisation=FALSE)
colold.lags <- nblag(COL.nb, 3)
geary.test(spNamedVec("CRIME", COL.OLD), nb2listw(colold.lags[[2]],
style="W"))
geary.test(spNamedVec("CRIME", COL.OLD), nb2listw(colold.lags[[3]],
style="W"), alternative="greater")
print(is.symmetric.nb(COL.nb))
COL.k4.nb <- knn2nb(knearneigh(coords.OLD, 4))
print(is.symmetric.nb(COL.k4.nb))
geary.test(spNamedVec("CRIME", COL.OLD), nb2listw(COL.k4.nb, style="W"))
geary.test(spNamedVec("CRIME", COL.OLD), nb2listw(COL.k4.nb, style="W"),
randomisation=FALSE)
cat("Note non-symmetric weights matrix - use listw2U()
")
geary.test(spNamedVec("CRIME", COL.OLD), listw2U(nb2listw(COL.k4.nb,
style="W")))
geary.test(spNamedVec("CRIME", COL.OLD), listw2U(nb2listw(COL.k4.nb,
style="W")), randomisation=FALSE)
Run the code above in your browser using DataLab