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