I have code that at one place ends up with a list of data frames which I really want to convert to a single big data frame.
I got some pointers from an earlier ques
Use bind_rows() from the dplyr package:
bind_rows(list_of_dataframes, .id = "column_label")