How to join list of dataframes to one dataframe, using the DF / list indices?
How to join list of dataframes to one dataframe, using the DF / list indices? library(dplyr); library(tibble) Here is my sample data. A list of small dataframes ( listOfDFs ) I want to join to a single dataframe, ( points ). listOfDFs points listOfDfs has 5 small dataframes with 7 rows total, and points is one dataframe with 7 rows: listOfDfs points points <- structure(list(EVENT_ID_CNTY = c("LBY1243", "LBY3389", "LBY3393", "LBY3506", "LBY3822"), year = c(2013, 2015, 2015, 2015, 2015), COUNTRY = c("Libya", "Libya", "Libya", "Libya", "Libya")), .Names = c("EVENT_ID_CNTY", "year", "COUNTRY"), row.names = c(NA, -5L), class = c("tbl_df", "tbl", "data.frame")) listOfDFs <- structure(list(`1` = structure(list(CELL_ID = c(165267, 164547 ), gwno = c(...
