How to store tweets such that when imported, all the details and column formatting remains the same.
library(rtweet)
tw1 <- search_tweets("RStats", n = 10000)
Next week:
tw2 <- search_tweets("RStats", n = 10000)
tweets <- dplyr::bind_rows(tw1, tw2)