join_list takes a list of data frames and joins them together using a specified join type.
Arguments
- df_list
A list of data frames.
- by
A character vector of column names to join on. Default (NULL) joins on all matching columns.
- mode
A character string specifying the type of join to perform. Must be one of "full", "inner", "left", "right", ... (see dplyr::join).