merge.sf {sf} | R Documentation |
merge method for sf and data.frame object
Description
merge method for sf and data.frame object
Usage
## S3 method for class 'sf'
merge(x, y, ...)
Arguments
x |
object of class |
y |
object of class |
... |
arguments passed on to |
Examples
a = data.frame(a = 1:3, b = 5:7)
st_geometry(a) = st_sfc(st_point(c(0,0)), st_point(c(1,1)), st_point(c(2,2)))
b = data.frame(x = c("a", "b", "c"), b = c(2,5,6))
merge(a, b)
merge(a, b, all = TRUE)
[Package sf version 1.0-16 Index]