Deutsche Bundesbank, Statistics on Pension funds - BBASV

Data - BUBA

series_code, series_name

Code
BBASV |>
  group_by(series_code, series_name) |>
  summarise(Nobs = n()) |>
  print_table_conditional()

BBK_ACS2_REP_SECTOR

Code
BBASV |>
  group_by(BBK_ACS2_REP_SECTOR, Sector) |>
  summarise(Nobs = n()) |>
  print_table_conditional()
BBK_ACS2_REP_SECTOR Sector Nobs
KV Health insurance corporations (Solvency I und II) 57585
S128 Insurance corporations 57585
S128A Reinsurance corporations 57585
S128B Life insurance corporations excl. reinsurance corporations 57585
S128C Non-life insurance corporations excl. reinsurance corporations 57585
SV Property and casualty insurance corporations (Solvency I und II) 57585

BBK_ACS2_COUNT_AREA

Code
BBASV |>
  group_by(BBK_ACS2_COUNT_AREA, `Area (countries, list of countries), BBk only`) |>
  summarise(Nobs = n()) |>
  print_table_conditional()
BBK_ACS2_COUNT_AREA Area (countries, list of countries), BBk only Nobs
4S Germany 750
4W Germany 552
AT Germany 14976
BE Germany 14976
BG Germany 384
CY Germany 14976
EE Germany 14976
ES Germany 14976
FI Germany 14976
FR Germany 14976
GR Germany 14976
HR Germany 4992
IE Germany 14976
IT Germany 14976
LT Germany 14976
LU Germany 14976
LV Germany 14976
MT Germany 14976
NL Germany 14976
PT Germany 14976
SI Germany 14976
SK Germany 14976
U4 Germany 15912
U5 Germany 15912
W0 Germany 21528
W2 Germany 15912

BBK_ACS2_COUNT_SECTOR

Code
BBASV |>
  group_by(BBK_ACS2_COUNT_SECTOR, Sector) |>
  summarise(Nobs = n()) |>
  print_table_conditional()

BBK_ACS2_ICPF_ITEM

Code
BBASV |>
  group_by(BBK_ACS2_ICPF_ITEM, Instrument) |>
  summarise(Nobs = n()) |>
  print_table_conditional()

Pensions

Code
BBASV |>
  filter(series_code %in% c("Q.DE.M.S128.T00.T.1.W0.S1._T.EUR",
                            "Q.DE.M.S128.L40.T.1.W0.S1._T.EUR")) |>
  ggplot() + geom_line(aes(x = period , y = value, color = `Instrument`))