Balance Sheet Items for Payments - BSP

Data - ECB

BS_ITEM

Code
BSP %>%
  left_join(BS_ITEM,  by = "BS_ITEM") %>%
  group_by(BS_ITEM, Bs_item) %>%
  summarise(Nobs = n()) %>%
  arrange(-Nobs) %>%
  {if (is_html_output()) print_table(.) else .}
BS_ITEM Bs_item Nobs
L21 Overnight deposits 517357
LE0 Electronic money - Total 2978
A2G Intra-day loans (assets) 1823
A2H Loans other than intraday (A20 - A2G) 1479
A10 Cash 1050
L10 Currency in circulation 1050

BS_REP_SECTOR

Code
BSP %>%
  left_join(BS_REP_SECTOR,  by = "BS_REP_SECTOR") %>%
  group_by(BS_REP_SECTOR, Bs_rep_sector) %>%
  summarise(Nobs = n()) %>%
  arrange(-Nobs) %>%
  {if (is_html_output()) datatable(., filter = 'top', rownames = F) else .}

BS_COUNT_SECTOR

Code
BSP %>%
  left_join(BS_COUNT_SECTOR,  by = "BS_COUNT_SECTOR") %>%
  group_by(BS_COUNT_SECTOR, Bs_count_sector) %>%
  summarise(Nobs = n()) %>%
  arrange(-Nobs) %>%
  {if (is_html_output()) print_table(.) else .}
BS_COUNT_SECTOR Bs_count_sector Nobs
2110 Central Government 256071
2000 Non-MFIs 144665
00NB Non-resident non-banks 106551
1211 Credit institutions 8037
1130 Credit institutions (all credit institutions, according to EU Law) 5335
0000 Unspecified counterpart sector 5078

FREQ

Code
BSP %>%
  left_join(FREQ,  by = "FREQ") %>%
  group_by(FREQ, Freq) %>%
  summarise(Nobs = n()) %>%
  arrange(-Nobs) %>%
  {if (is_html_output()) print_table(.) else .}
FREQ Freq Nobs
M Monthly 479392
Q Quarterly 35347
A Annual 10150
H Half-yearly 848

REF_AREA

Code
BSP %>%
  left_join(REF_AREA,  by = "REF_AREA") %>%
  group_by(REF_AREA, Ref_area) %>%
  summarise(Nobs = n()) %>%
  arrange(-Nobs) %>%
  {if (is_html_output()) datatable(., filter = 'top', rownames = F) else .}

TITLE

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