bde_series_full_load | R Documentation |
Load a full time-series file provided by BdE.
bde_series_full_load(
series_csv,
parse_dates = TRUE,
parse_numeric = TRUE,
cache_dir = NULL,
update_cache = FALSE,
verbose = FALSE,
extract_metadata = FALSE
)
series_csv |
csv file of a series, as defined in the field
|
parse_dates |
Logical. If |
parse_numeric |
Logical. If |
cache_dir |
A path to a cache directory. The directory can also be set
via options with |
update_cache |
Logical. If |
verbose |
Logical |
extract_metadata |
Logical |
The series name is a positional code showing the location of the table. For example, table be_6_1 represents the Table 1, Chapter 6 of the Statistical Bulletin ("BE"). Although it is a unique value, it is subject to change (i.e. a new table is inserted before).
For that reason, the function bde_series_load()
is more suitable for
extracting specific time-series.
A tibble with a field Date
and the alias of the
fields series as described on the catalogs. See bde_catalog_load()
.
This function tries to coerce the columns to numbers. For some series a
warning may be displayed if the parser fails. You can override the default
behavior with parse_numeric = FALSE
Other series:
bde_series_load()
# Metadata
bde_series_full_load("TI_1_1.csv", extract_metadata = TRUE)
# Data
bde_series_full_load("TI_1_1.csv")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.