Banking structural statistical indicators

Data - ECB

Info

LAST_DOWNLOAD

LAST_DOWNLOAD
2025-08-28

LAST_COMPILE

LAST_COMPILE
2026-07-24

Last

Code
SSI %>%
  group_by(TIME_PERIOD) %>%
  summarise(Nobs = n()) %>%
  arrange(desc(TIME_PERIOD)) %>%
  head(1) %>%
  print_table_conditional()
TIME_PERIOD Nobs
2025 515

TITLE

Code
SSI %>%
  group_by(TITLE) %>%
  summarise(Nobs = n()) %>%
  arrange(-Nobs) %>%
  {if (is_html_output()) datatable(., filter = 'top', rownames = F) else .}

FREQ

Code
SSI %>%
  left_join(FREQ,  by = "FREQ") %>%
  group_by(FREQ, Freq) %>%
  summarise(Nobs = n()) %>%
  arrange(-Nobs) %>%
  print_table_conditional()
FREQ Freq Nobs
A Annual 17565

REF_AREA

Code
SSI %>%
  left_join(REF_AREA,  by = "REF_AREA") %>%
  group_by(REF_AREA, Ref_area) %>%
  summarise(Nobs = n()) %>%
  arrange(-Nobs) %>%
  print_table_conditional()
REF_AREA Ref_area Nobs
SE Sweden 795
DK Denmark 748
CZ Czech Republic 745
HU Hungary 744
LV Latvia 709
LT Lithuania 707
PL Poland 636
RO Romania 616
EE Estonia 594
BE Belgium 589
FI Finland 589
PT Portugal 589
BG Bulgaria 587
GR Greece 586
AT Austria 581
IT Italy 581
SI Slovenia 581
ES Spain 579
CY Cyprus 577
FR France 577
IE Ireland 573
MT Malta 573
NL Netherlands 572
DE Germany 566
SK Slovakia 553
LU Luxembourg 545
GB United Kingdom 482
HR Croatia 339
U2 Euro area (Member States and Institutions of the Euro Area) changing composition 336
D0 Extra-EU (changing composition) 316

TIME_FORMAT

Code
SSI %>%
  group_by(TIME_FORMAT) %>%
  summarise(Nobs = n()) %>%
  arrange(-Nobs) %>%
  print_table_conditional()
TIME_FORMAT Nobs
P1Y 17565