nc_export_all_users | R Documentation |
When reading data back into R, be sure to treat the id_str
, to
and
from
columns as character rather than integer or double, since
Twitter user IDs are 64-bit and R does not have support for 64
bit integers or doubles. See examples for how to read safely exported
data back into R without accidentally truncation of user IDs.
nc_export_all_users(cache_name, local_path)
cache_name |
the name of the cache and associated Docker container |
local_path |
path of csv |
## Not run: nc_export_all_follows("aPPR", "~/follows.csv") readr::read_csv( "~/follows.csv", col_types = list( from = col_character(), to = col_character() ) ) nc_export_all_users("aPPR", "~/users.csv") readr::read_csv( "~/Desktop/users.csv", col_types = list( id_str = col_character() ) ) ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.