timelines {twitteR} | R Documentation |
Functions to view Twitter timelines
Description
These functions will allow you to retrieve various timelines within the Twitter universe
Usage
userTimeline(user, n=20, maxID=NULL, sinceID=NULL, includeRts=FALSE,
excludeReplies=FALSE, ...)
homeTimeline(n=25, maxID=NULL, sinceID=NULL, ...)
mentions(n=25, maxID=NULL, sinceID=NULL, ...)
retweetsOfMe(n=25, maxID=NULL, sinceID=NULL, ...)
Arguments
user |
The Twitter user to detail, can be |
n |
Number of tweets to retrieve, up to a maximum of 3200 |
maxID |
Maximum ID to search for |
sinceID |
Minimum (not inclusive) ID to search for |
includeRts |
If |
excludeReplies |
if |
... |
Optional arguments to be passed to |
Value
A list of status
objects
Author(s)
Jeff Gentry
See Also
Examples
## Not run:
ut <- userTimeline('barackobama', n=100)
## End(Not run)
[Package twitteR version 1.1.9 Index]