Slides for Lecture 11 of the Saint Louis University Course Introduction to GIS. These slides introduce concepts related to binding tabular and spatial data
Using sample data from the lecture-11 repo: > x <- read_csv(“November2017.csv”) > y <- read_csv(“December2017.csv”) > crimes <- bind_rows(x, y) The x and y tables must have matching column names and formats! f(x)
Using sample data from the lecture-11 repo: > x <- st_read(“St_Louis_City.shp”) > y <- st_read(“St_Louis_County.shp”) > counties <- rbind(x, y) The x and y tables must have matching column names and formats! f(x)