timelines(twitteR)
timelines()所属R语言包:twitteR
Functions to view Twitter timelines
功能来查看Twitter的时间表
译者:生物统计家园网 机器人LoveR
描述----------Description----------
These functions will allow you to retrieve various timelines within the Twitter universe
这些功能将允许您检索Twitter的宇宙不同的时间轴内
用法----------Usage----------
publicTimeline(...)
userTimeline(user, n=20, maxID=NULL, sinceID=NULL, ...)
homeTimeline(n=25, maxID=NULL, sinceID=NULL, ...)
mentions(n=25, maxID=NULL, sinceID=NULL, ...)
retweetedByMe(n=25, maxID=NULL, sinceID=NULL, ...)
retweetedToMe(n=25, maxID=NULL, sinceID=NULL, ...)
retweetsOfMe(n=25, maxID=NULL, sinceID=NULL, ...)
参数----------Arguments----------
参数:user
The Twitter user to detail, can be character or an user object.
Twitter用户的细节,可以character或user对象。
参数:n
Number of tweets to retrieve, up to a maximum of 3200
数量要检索的鸣叫,最多3200
参数:maxID
Maximum ID to search for
最大的ID来搜索
参数:sinceID
Minimum (not inclusive) ID to search for
最小(不含)的ID来搜索
参数:...
Optional arguments to be passed to getURL
可选参数传递给getURL
Details
详细信息----------Details----------
The publicTimeline function will return a current snapshot of the public timeline.
publicTimeline函数将返回公共时间轴的当前快照。
The userTimeline function will only work if the user requested has a public timeline, or you have previously registered a OAuth object using registerTwitterOAuth and are authorized to view that content.
userTimeline函数只会工作,如果用户要求有一个公共的时间表,或您以前注册过一个OAuth对象使用registerTwitterOAuth和被授权查看的内容。
The other functions will provide various views into timelines available to the user. They all require authentication via OAuth.
的其他功能将提供到时间表提供给用户的各种视图。它们都需要身份验证通过OAuth。
值----------Value----------
A list of status objects
status对象列表
(作者)----------Author(s)----------
Jeff Gentry
参见----------See Also----------
getUser, status,
getUser,status,
实例----------Examples----------
pt <- publicTimeline()
pt
ut <- userTimeline('barackobama', n=100)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|