So im actually working on twitteR and i need a way to store my tweets into a csv file and pull it out when i need it . This is due to the idea i want to compile the tweets i
You can use the following to convert tweets into tweets dataframe:
tweets.df <- do.call("rbind", lapply(tweets, as.data.frame))
Then use tweets.df in your write.csv function.