st_block_nb {sfdep} | R Documentation |
Create Block Contiguity for Spatial Regimes
Description
libpysal write that "block contiguity structures are relevant when defining neighbor relations based on membership in a regime. For example, all counties belonging to the same state could be defined as neighbors, in an analysis of all counties in the US."
Source: libpysal
Usage
st_block_nb(regime, id = 1:length(regime), diag = FALSE)
Arguments
regime |
a column identifying which spatial regime each element of |
id |
a column identifying unique observations |
diag |
default |
Value
An object of class nb
. When diag = TRUE
the attribute self.included = TRUE
.
Examples
id <- guerry$code_dept
regime <- guerry$region
st_block_nb(regime, id)
[Package sfdep version 0.2.4 Index]