nb_union {sfdep} | R Documentation |
Set Operations
Description
Perform set operations element-wise on two lists of equal length.
Usage
nb_union(x, y)
nb_intersect(x, y)
nb_setdiff(x, y)
Arguments
x |
list of class |
y |
list of class |
Details
-
nb_union()
returns the union of elements in each element of x and y -
nb_intersect()
returns the intersection of elements in each element of x and y -
nb_setdiff()
returns the difference of elements in each element of x and y
Value
A list of class nb
Examples
nb <- st_contiguity(guerry$geometry)
nb_knn <- st_knn(guerry$geometry, k = 3)
nb_setdiff(nb, nb_knn)
nb_union(nb, nb_knn)
nb_intersect(nb, nb_knn)
[Package sfdep version 0.2.4 Index]