我在使用StreamR在R中录制推文时遇到问题。我希望录制所有包含字符串" hello"在其中,以美国为界。我认为这是在美国发回所有推文和所有推文的所有推文,我希望所有的推文都是"你好"发生在美国。
filterStream("test.json", track="hello", timeout = 12,locations=c(-124.39,25.82,-66.94,49.38), oauth=twitCred)
有人可以帮我解决这个问题吗?我试图查找如何修复但我无法找到答案。
谢谢!
答案 0 :(得分:0)
您似乎已正确指定locations=
。
是什么让你认为这不起作用。您的代码看起来几乎与filterStream
帮助页面
## capture tweets mentioning the "rstats" hashtag or sent from New York City
filterStream( file="tweets_rstats.json", track="rstats",
locations=c(-74,40,-73,41), timeout=600, oauth=my_oauth )