powered by
Perform set operations element-wise on two lists of equal length.
nb_union(x, y)nb_intersect(x, y)nb_setdiff(x, y)
nb_intersect(x, y)
nb_setdiff(x, y)
A list of class nb
nb
list of class nb
nb_union() returns the union of elements in each element of x and y
nb_union()
nb_intersect() returns the intersection of elements in each element of x and y
nb_intersect()
nb_setdiff() returns the difference of elements in each element of x and y
nb_setdiff()
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)
Run the code above in your browser using DataLab