Learn R Programming

tidyBdE

tidyBdE is an API package that helps to retrieve data from Banco de España. The data is provided as tibble and the package tries to guess the format of every time-series (dates, characters and numbers).

Installation

Install tidyBdE from CRAN:

install.packages("tidyBdE")

You can install the developing version of tidyBdE with:

library(remotes)

install_github("ropenspain/tidyBdE")

Alternatively, you can install the developing version of tidyBdE using the r-universe:

# Enable this universe
options(repos = c(
  ropenspain = "https://ropenspain.r-universe.dev",
  CRAN = "https://cloud.r-project.org"
))

# Install tidyBdE
install.packages("tidyBdE")

Examples

Banco de España (BdE) provides several time-series, either produced by the institution itself or compiled for another sources, as Eurostat or INE.

The basic entry point for searching time-series are the catalogs (indexes) of information. You can search any series by name:

library(tidyBdE)

# Load tidyverse for better handling
library(tidyverse)


# Search GBP on "TC" (exchange rate) catalog
XR_GBP <- bde_catalog_search("GBP", catalog = "TC")

XR_GBP %>%
  select(Numero_secuencial, Descripcion_de_la_serie) %>%
  # To table on document
  knitr::kable()
Numero_secuencialDescripcion_de_la_serie
573214Tipo de cambio. Libras esterlinas por euro (GBP/EUR).Datos diarios

Note that BdE files are only provided in Spanish, for the time being, the organism is working on the English version. By now, search terms should be provided in Spanish in order to get search results.

After we have found our series, we can load the series for the GBP/EUR exchange rate using the sequential number reference (Numero_Secuencial) as:


seq_number <- XR_GBP %>%
  # First record
  slice(1) %>%
  # Get id
  select(Numero_secuencial) %>%
  # Convert to num
  as.double()

# Load metadata
bde_series_load(seq_number, extract_metadata = TRUE) %>%
  # To table on the vignette
  knitr::kable()
Date573214
NOMBRE DE LA SERIEDTCCBCEGBPEUR.B
NÚMERO SECUENCIAL573214
ALIAS DE LA SERIETC_1_1.4
DESCRIPCIÓN DE LA SERIETipo de cambio. Libras esterlinas por euro (GBP/EUR).Datos diarios
DESCRIPCIÓN DE LAS UNIDADESLibras esterlinas por Euro
FRECUENCIALABORABLE
# Extract series
time_series <- bde_series_load(seq_number, series_label = "EUR_GBP_XR") %>%
  filter(Date >= "2010-01-01" & Date <= "2020-12-31") %>%
  drop_na()

Plots

The package also provides a custom ggplot2 theme based on the publications of BdE:

ggplot(time_series, aes(x = Date, y = EUR_GBP_XR)) +
  geom_line(colour = bde_vivid_pal()(1)) +
  geom_smooth(method = "gam", colour = bde_vivid_pal()(2)[2]) +
  labs(
    title = "EUR/GBP Exchange Rate (2010-2020)",
    subtitle = "%",
    caption = "Source: BdE"
  ) +
  geom_vline(
    xintercept = as.Date("2016-06-23"),
    linetype = "dotted"
  ) +
  geom_label(aes(
    x = as.Date("2016-06-23"),
    y = .95,
    label = "Brexit"
  )) +
  coord_cartesian(ylim = c(0.7, 1)) +
  theme_bde()

The package provides also several “shortcut” functions for a selection of the most relevant macroeconomic series, so there is no need to look for them in advance:

gdp <- bde_ind_gdp_var("values")
gdp$label <- "GDP YoY"

UnempRate <- bde_ind_unemployment_rate("values")
UnempRate$label <- "Unemployment Rate"

plotseries <- bind_rows(gdp, UnempRate) %>%
  drop_na() %>%
  filter(Date >= "2010-01-01" & Date <= "2019-12-31")

ggplot(plotseries, aes(x = Date, y = values)) +
  geom_line(aes(color = label)) +
  labs(
    title = "Spanish Economic Indicators (2010-2019)",
    subtitle = "%",
    caption = "Source: BdE"
  ) +
  theme_bde() +
  scale_color_bde_d(palette = "bde_vivid_pal") # Custom palette on the package

Palettes

Two custom palettes, based on the used by BdE on some publications are available.


scales::show_col(bde_rose_pal()(6))
scales::show_col(bde_vivid_pal()(6))

Those palettes can be applied to a ggplot2 using some custom utils included on the package (see help("scale_color_bde_d", package = "tidyBdE")).

A note on caching

You can use tidyBdE to create your own local repository at a given local directory passing the following option:

options(bde_cache_dir = "./path/to/location")

When this option is set, tidyBdE would look for the cached file on the bde_cache_dir directory and it will load it, speeding up the process.

It is possible to update the data (i.e. after every monthly or quarterly data release) with the following commands:

bde_catalog_update()

# On most of the functions using the option update_cache = TRUE

bde_series_load("SOME ID", update_cache = TRUE)

Another R packages for downloading Spanish open data

Other useful packages that provides access to Spanish open data:

  • MicroDatosEs: A package that process microdata provided by Spanish statistical agencies (mostly, INE).
  • CatastRo: A package that queries Sede electrónica del Catastro API.
  • mapSpain: For downloading geospatial information from Instituto Geográfico Nacional (IGN) and creating maps of Spain.

Disclaimer

This package is in no way sponsored endorsed or administered by Banco de España.

Citation

To cite the ‘tidyBdE’ package in publications use:

H. Herrero D (2022). tidyBdE: Download Data from Bank of Spain. doi: 10.5281/zenodo.4673496 (URL: https://doi.org/10.5281/zenodo.4673496), R package version 0.2.4, <URL: https://ropenspain.github.io/tidyBdE/>.

A BibTeX entry for LaTeX users is

@Manual{,
  title = {tidyBdE: Download Data from Bank of Spain},
  year = {2022},
  version = {0.2.4},
  author = {Diego {H. Herrero}},
  note = {R package version 0.2.4},
  doi = {10.5281/zenodo.4673496},
  url = {https://ropenspain.github.io/tidyBdE/},
  abstract = {Tools to download data series from 'Banco de España' ('BdE') on 'tibble' format. 'Banco de España' is the national central bank and, within the framework of the Single Supervisory Mechanism ('SSM'), the supervisor of the Spanish banking system along with the European Central Bank. This package is in no way sponsored endorsed or administered by 'Banco de España'.},
}

Copy Link

Version

Install

install.packages('tidyBdE')

Monthly Downloads

849

Version

0.2.4

License

GPL (>= 3)

Issues

Pull Requests

Stars

Forks

Maintainer

Diego H. Herrero

Last Published

February 23rd, 2022

Functions in tidyBdE (0.2.4)

scales_bde

BdE scales for ggplot2.
bde_catalog_load

Load BdE catalogs
bde_catalog_search

Search BdE catalogs
theme_bde

BdE ggplot2 theme
bde_parse_dates

Parse dates
bde_series_full_load

Load BdE full time-series files
tidyBdE-package

tidyBdE: Download Data from Bank of Spain
bde_indicators

Relevant Indicators of Spain
bde_pals

BdE color palettes
bde_check_access

Check access to BdE
bde_catalog_update

Update BdE catalogs
bde_series_load

Load a single BdE time-series.