Split, apply, and combine multiple data frames into one data frame
问题 I have completed an origin-destination cost matrix (23 origins, ~600,000 destinations) for traveling through a street network in ArcGIS and disaggregated the resulting matrix into DBF tables by store ID using a Python script. I have loaded each DBF table into an R session as follows: # Import OD cost matrix results for each store origins <- read.dbf('ODM_origins.dbf') store_17318 <- read.dbf('table_17318.dbf') store_17358 <- read.dbf('table_17358.dbf') store_17601 <- read.dbf('table_17601.dbf