The following table shows the series available on the catalog (Last update: 21-April-2025).
Use the sequential number to load a single series (see Example below):
Example
For searching and extracting a specific serie, see the full workflow:
library(tidyBdE)
library(tidyverse)
# GDP France
fr <- bde_catalog_search("Francia(.*)PIB")
# Show table on vignette
fr %>%
select(Numero_secuencial, Descripcion_de_la_serie) %>%
knitr::kable()
Numero_secuencial | Descripcion_de_la_serie |
---|---|
143057 | Economía internacional. Francia. PIB. Precios corrientes. Datos CVEC |
143072 | Economía internacional. Francia. PIB. Precios constantes. Base 2010. Datos CVEC |
# In this case we want to extract the first serie
# See tidyverse style
fr %>%
# Select id
select(Numero_secuencial) %>%
# of first obs
slice(1) %>%
# convert to number
as.double() %>%
# And load it
bde_series_load()
#> # A tibble: 260 × 2
#> Date `143057`
#> <date> <dbl>
#> 1 1960-03-01 11.3
#> 2 1960-06-01 11.6
#> 3 1960-09-01 11.9
#> 4 1960-12-01 12.1
#> 5 1961-03-01 12.4
#> 6 1961-06-01 12.5
#> 7 1961-09-01 12.8
#> 8 1961-12-01 13.2
#> 9 1962-03-01 13.7
#> 10 1962-06-01 14.1
#> # ℹ 250 more rows
# See the metadata
fr %>%
# Select id
select(Numero_secuencial) %>%
# of first obs
slice(1) %>%
# convert to number
as.double() %>%
# And load the metadata
bde_series_load(extract_metadata = TRUE) %>%
# To table on the vignette
knitr::kable()
Date | 143057 |
---|---|
NOMBRE DE LA SERIE | D_UNFKA003 |
NÚMERO SECUENCIAL | 143057 |
ALIAS DE LA SERIE | BE_26_1.6 |
DESCRIPCIÓN DE LA SERIE | Economía internacional. Francia. PIB. Precios corrientes. Datos CVEC |
DESCRIPCIÓN DE LAS UNIDADES | Miles de millones de Euros |
FRECUENCIA | TRIMESTRAL |