Learn R Programming

sfdep (version 0.2.5)

cond_permute_nb: 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)

Value

A list of class nb where each element contains a random sample of neighbors excluding the observed region.

Arguments

nb

a neighbor list.

seed

default null. A value to pass to set.seed() for reproducibility.

Examples

Run this code
nb <- st_contiguity(guerry)
nb[1:5]
# conditionally permute neighbors
perm_nb <- cond_permute_nb(nb)
perm_nb[1:5]

Run the code above in your browser using DataLab