Currently i am working with twite data for what i am using the rtweet package. However when i want to save my data i got a poblem with it.
I use the following code to get my data:
Data1 <- get_timeline("Account1", n = 3200)
Data2 <- get_timeline("Account2", n = 3200)
Data3 <- get_timeline("Account2", n = 3200)
timelines <- dplyr::bind_rows(Data1, Data2, Data3)
write_csv(timelines, path = paste("./Data/Account_tweets_", Sys.Date(), ".csv", sep=""))
The error I recieve is as following:
Error in stream_delim_(df, path, ..., bom = bom, quote_escape = quote_escape) : Don't know how to handle vector of type list.
Can someone help me?