0
我已經開始使用R.我不斷收到當我試圖運行此代碼此錯誤提取Twitter的鳴叫時:錯誤,使用R
PBunting <- userTimeline('@PeterBuntingMP',n=10000, since='2016-02-35', until='2016-11-28')
錯誤tw_from_response(滿分,...) :未使用的參數(直到= 「2016年11月28日」)
我已經開始使用R.我不斷收到當我試圖運行此代碼此錯誤提取Twitter的鳴叫時:錯誤,使用R
PBunting <- userTimeline('@PeterBuntingMP',n=10000, since='2016-02-35', until='2016-11-28')
錯誤tw_from_response(滿分,...) :未使用的參數(直到= 「2016年11月28日」)
假設你正在使用的twitteR
包userTimeline
功能,那麼你得到這個錯誤,因爲該功能不具有參數名開始until
:
userTimeline(user, n=20, maxID=NULL, sinceID=NULL, includeRts=FALSE,
excludeReplies=FALSE, ...)
作爲邊注,'twitteR'正在[棄用](https://github.com/geoffjentry/twitteR#deprecation),以及'rtweet'應改用 – yeedle
沒辦法想法有一個更好的包使用。謝謝 –
我在查找足夠的文檔和rtweet包中的代碼示例時遇到了另一個問題 –