can you succesfully bind_rows just a small part of each ?
all_trips <- bind_rows(head(q2_2019),
head(q3_2019),
head(q4_2019),
head(q1_2020))
Are these huge amounts of data ?
library(purrr)
library(pryr)
map(list(q2_2019, q3_2019, q4_2019, q1_2020),object_size)