Hello,
I have a list of tibbles that can change in length over time. Each tibble has the same columns. If I wanted to bind_rows() on my list of connections I get the following error:
dplyr::union_all()
would work if there are 2 tables, but I need it to work with a list of variable length. Any guidance on how to do this?
I wanted to try to avoid collecting each tibble into memory because this feels like it would be more efficient, although that is an assumption.
Appreciate the time!
Kyle