I want to merge/join multiple data frames, and I\'ve chosen the method of list(df_a, df_b, df_c) %>% purrr::reduce(full_join, by = ...) following this SO solutio
list(df_a, df_b, df_c) %>% purrr::reduce(full_join, by = ...)