[GIS] Seeking appropriate statistic to measure spatial autocorrelation of points with binary values

autocorrelationspatial statistics

I am trying to determine the level of spatial autocorrelation in a point dataset. The attribute I'm interested in is binary (presence/absence of a species), for which Moran's I is not appropriate. On the other hand, Joint Count statistics, which are typically recommended for binary or categorical data, apparently are not appropriate for point data.

What is an appropriate statistic to measure global and/or local spatial autocorrelation of points when the attribute of interest is binary?

Best Answer

Your assertion that a Join-Counts statistic is not appropriate for binary data is not correct. It is just a matter of how the spatial weights matrix (Wij) is specified. As in a Morna's-I, you cannot use a distance matrix in this type of analysis, However, an appropriate binary matrix of contingency can be calculated using a distance cutoff. You can create this type of spatial weights matrix as well as conduct a Join-Count analysis in the R spdep library. See the "joincount.test" and joincount.mc (for Monte Carlo permutation test) functions.

Related Question