cond_permute_nb {sfdep} | R Documentation |
Creates a conditional permutation of neighbors list holding i fixed and shuffling it's neighbors.
cond_permute_nb(nb, seed = NULL)
nb |
a neighbor list. |
seed |
default null. A value to pass to |
A list of class nb
where each element contains a random sample of neighbors excluding the observed region.
nb <- st_contiguity(guerry)
nb[1:5]
# conditionally permute neighbors
perm_nb <- cond_permute_nb(nb)
perm_nb[1:5]