Pension funds - total expenditure on pensions - tin00038

Data - Eurostat

Info

Last observation: 2012 (N = 20)

First observation: 2001 (N = 13)

Last data update: 02 aoû 2026, 08:01. Last compile: 18 aoû 2026, 04:29

Structure

geo

Code
tin00038 |>
  left_join(geo, by = "geo") |>
  group_by(geo, Geo) |>
  summarise(Nobs = n()) |>
  arrange(-Nobs) |>
  mutate(Flag = gsub(" ", "-", str_to_lower(Geo)),
         Flag = paste0('<img src="../../icon/flag/vsmall/', Flag, '.png" alt="Flag">')) |>
  select(Flag, everything()) %>%
  {if (is_html_output()) datatable(., filter = 'top', rownames = F, escape = F) else .}

Table - 2001, 2003, 2006, 2009, 2012

Code
tin00038 |>
  filter(time %in% c("2001", "2006", "2009", "2012")) |>
  left_join(geo, by = "geo") |>
  select(geo, Geo, time, values) |>
  spread(time, values) |>
  mutate(Flag = gsub(" ", "-", str_to_lower(Geo)),
         Flag = paste0('<img src="../../icon/flag/vsmall/', Flag, '.png" alt="Flag">')) |>
  select(Flag, everything()) %>%
  {if (is_html_output()) datatable(., filter = 'top', rownames = F, escape = F) else .}