我正在使用rtweet
软件包来检索特定主题标签上的推文。
我的R
代码如下:
# load rtweet package
library(rtweet)
## search for 18000 tweets using the "singapore" hashtag
rt <- search_tweets(
"#singapore", n = 18000, include_rts = FALSE
)
但是,RStudio
在执行代码时显示以下行:
Downloading [==>--------------------------------------] 8%
然后结束执行,上述消息仍显示8%。
nrow(rt)
告诉我1,250
注意:执行代码时,rtweet
将我定向到Web浏览器,并通过Web浏览器进行了身份验证。
我在这里做什么错了?