Description Usage Arguments Details Value Author(s) See Also Examples
This function will issue a search of Twitter based on a supplied search string.
1 2 3 4 |
searchString |
Search query to issue to twitter. Use "+" to separate query terms. |
n |
The maximum number of tweets to return |
lang |
If not |
since |
If not |
until |
If not |
locale |
If not |
geocode |
If not |
sinceID |
If not |
maxID |
If not |
resultType |
If not |
retryOnRateLimit |
If non-zero the search command will block retry up to X times if the rate limit is experienced. This might lead to a much longer run time but the task will eventually complete if the retry count is high enough |
... |
Optional arguments to be passed to |
These commands will return any authorized tweets which match the
search criteria. Note that there are pagination restrictions as well
as other limits on what can be searched, so it is always possible to
not retrieve as many tweets as was requested with the n
argument. Authorized tweets are public tweets as well as those
protected tweets that are available to the user after authenticating
via registerTwitterOAuth
.
The searchString
is always required. Terms can contain spaces,
and multiple terms should be separated with "+".
For the geocode
argument, the values are given in the format
latitude,longitude,radius
, where the radius can have either
mi
(miles) or km
(kilometers) as a unit. For example
geocode='37.781157,-122.39720,1mi'
.
For the sinceID
argument, if the requested ID value is older
than the oldest available tweets, the API will return tweets starting
from the oldest ID available.
For the maxID
argument, tweets upto this ID value will be returned
starting from the oldest ID available. Useful for paging.
The resultType
argument specifies the type of search results received
in API response. Default is mixed
.
Allowed values are mixed
(includes popular + real time results),
recent
(returns the most recent results) and popular
(returns only the most popular results).
The Rtweets
function is a wrapper around searchTwitter
which hardcodes in a search for #rstats
.
A list of status
objects
Jeff Gentry
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | ## Not run:
searchTwitter("#beer", n=100)
Rtweets(n=37)
## Search between two dates
searchTwitter('charlie sheen', since='2011-03-01', until='2011-03-02')
## geocoded results
searchTwitter('patriots', geocode='42.375,-71.1061111,10mi')
## using resultType
searchTwitter('world cup+brazil', resultType="popular", n=15)
searchTwitter('from:hadleywickham', resultType="recent", n=10)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.