getUser(twitteR)
getUser()所属R语言包:twitteR
Functions to manage Twitter users
Twitter用户管理的功能
译者:生物统计家园网 机器人LoveR
描述----------Description----------
These functions allow you interact with information about a Twitter user - retrieving their base information, list of friends, list of followers, and an up to date timeline.
这些功能可让您与Twitter用户的信息交互 - 取回他们的基本信息,朋友列表,列表的追随者,以及最新的时间表。
用法----------Usage----------
getUser(user, ...)
lookupUsers(users, includeNA=FALSE, ...)
参数----------Arguments----------
参数:user
The Twitter user to detail, can be character or an user object.
Twitter用户的细节,可以character或user对象。
参数:users
A vector of either user IDs or screen names or a mix of both
无论是用户ID或网名或两者的混合的矢量
参数:includeNA
If TRUE will leave an NA element in the return list for users that don't exist
如果TRUE将留下的NA元件在返回的列表中不存在的用户
参数:...
Optional arguments to be passed to getURL
可选参数传递给getURL
Details
详细信息----------Details----------
These functions will only return fully formed objects if the authenticated user is allowed to see the requested user. If that person has a private account and has not allowed you to see them, you will not be able to extract that information.
这些功能将只返回完全形成的对象,如果通过身份验证的用户可以看到该请求的用户。如果这个人有一个私人帐户,并没有让你看到他们,你将无法提取这些信息。
The lookupUsers function should be used in cases where there are multiple lookups going to take place, to reduce the API call load. This function requires OAuth authentication.
在有多个查找将要发生,以减少的API呼叫负载的情况下,应使用lookupUsers函数。此功能需要OAuth认证。
值----------Value----------
The getUser function returns an object of class user.
getUser函数返回一个对象类user。
The lookupUsers function will return a list of user objects, sorted in the order of the users argument, with names being the particular element of users that it matches to. If the includeNA argument is set to FALSE (default), any non-existing users will be dropped from the list.
lookupUsers函数将返回user对象,users参数的顺序排序的列表,users它匹配的特定元素的名字。如果includeNA参数被设置成FALSE(默认),任何非现有用户将被从列表中删除。
(作者)----------Author(s)----------
Jeff Gentry
参见----------See Also----------
mentions
mentions
实例----------Examples----------
tuser <- getUser('geoffjentry')
## Not run: [#不运行:]
## This requires OAuth authentication[#这需要OAuth认证。]
users <- lookupUsers(c('geoffjentry', 'whitehouse'))
## End(Not run)[#(不执行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|