Description Usage Arguments Value Author(s) See Also Examples
Functions designed to import data into twitteR objects from a variety of data sources. Currently only JSON is supported, and this entire branch of functionality should be considered experimental & under development.
1 2 3 4 5 6 7 | import_statuses(raw_data, conversion_func = json_to_statuses)
import_trends(raw_data, conversion_func = json_to_trends)
import_users(raw_data, conversion_func = json_to_users)
import_obj(raw_data, conversion_func, ...)
json_to_users(raw_data)
json_to_statuses(raw_data)
json_to_trends(raw_data)
|
raw_data |
Data to be be parsed via the prescribed function |
conversion_func |
The function to convert |
... |
Arguments to pass along to |
A list of twitteR objects of the appropriate type, e.g. status
, user
, etc
Jeff Gentry
1 2 3 4 | ## Not run:
status_list = import_statuses(list_of_status_json)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.