I am currently executing this code:
live_tweets <- stream_tweets(q="car,traffic",c(-125,50,-130,60),timeout = streamtime, parse = FALSE, file_name = paste0(filename,".json"), language = "en",token = oauth)
My query (q) is a combination of both keywords and location. When I run this code the following error pops up:
Warning messages:
1: In if (verbose) { :
the condition has length > 1 and only the first element will be used
2: In if (verbose) { :
the condition has length > 1 and only the first element will be used
3: In if (verbose) message("streaming data saved as ", file_name) :
the condition has length > 1 and only the first element will be used
Thus rtweet is only using one part of my query. What do you suggest please?
Much thanks