cbs_download_data {cbsodataR} | R Documentation |
Gets all data from a cbs table.
Description
Gets all data via bulk download. cbs_download_data
dumps the data in
(international) csv format.
Usage
cbs_download_data(
id,
path = file.path(id, "data.csv"),
catalog = catalog,
...,
select = NULL,
typed = TRUE,
verbose = FALSE,
show_progress = interactive() && !verbose,
base_url = getOption("cbsodataR.base_url", BASE_URL)
)
Arguments
id |
of cbs open data table |
path |
of data file, defaults to "id/data.csv" |
catalog |
catalog id, can be retrieved with |
... |
optional filter statements to select rows of the data, |
select |
optional names of columns to be returned. |
typed |
Should the data automatically be converted into integer and numeric? |
verbose |
show the underlying downloading of the data |
show_progress |
show a progress bar while downloading. |
base_url |
optionally specify a different server. Useful for third party data services implementing the same protocol. |
See Also
Other download:
cbs_download_meta()
,
cbs_download_table()
Other data retrieval:
cbs_add_date_column()
,
cbs_add_label_columns()
,
cbs_extract_table_id()
,
cbs_get_data_from_link()
,
cbs_get_data()