Consolidated banking statistics - CBS

Data - BIS

Code
CBS <- read_parquet("CBS.parquet")

Info

Last observation: Q: 2021-01-01 (N = 73277)

First observation: Q: 1983-10-01 (N = 10234)

Last data update: 25 jul 2026, 09:54. Last compile: 17 aoû 2026, 22:20

Structure

iso3c, iso2c, Reporting country

Code
CBS |>
  arrange(iso3c, date) |>
  group_by(iso3c, iso2c, `Reporting country`) |>
  summarise(Nobs = n(),
            start = first(date),
            end = last(date)) |>
  arrange(-Nobs) %>%
  {if (is_html_output()) datatable(., filter = 'top', rownames = F) else .}