I have a list of 7 data frames (list_df) which I would like to merge into a single data frame (df_tot). The data frames, for the most part, have the same column names - with a couple exceptions - and are comprised mostly of factors with different levels between data frames (see pngs link of structure and head).
I am using the rduce
function in purrr as so: df_tot <- reduce(list_df, full_join)
. However, this causes my pc to crash...
Any help appreciated.