sf (version 0.9-7)

merge.sf: merge method for sf and data.frame object

Description

merge method for sf and data.frame object

Usage

# S3 method for sf
merge(x, y, ...)

Arguments

x

object of class sf

y

object of class data.frame

...

arguments passed on to merge.data.frame

Examples

Run this code
# NOT RUN {
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)
# }

Run the code above in your browser using DataCamp Workspace