Pontifications

# https://stackoverflow.com/questions/30242065/trying-to-merge-multiple-csv-files-in-r

ig_van_neighbourhood_2015 <- list.files(
  "/Users/rtanglao/Dropbox/GIT/ig-ggmap/WITH_NEIGHBOURHOOD_CSV_FILES_FOR_GGMAP_2015", 
  pattern = "[[:print:]]*neighbourhood[[:print:]]*.csv",
  full.names = TRUE) %>% 
  lapply(read_csv) %>% 
  bind_rows
  
  write.csv(ig_van_neighbourhood_2015, 
          file = "ig_van_2015-colour-lat-long-date-neighborhood.csv",
          row.names=FALSE)

Leave a comment on github