Non-autonomous pension funds - sbs_pen_7e

Data - Eurostat

Info

Last observation: Annual: 2007 (N = 148)

First observation: Annual: 1997 (N = 7)

Last data update: 23 jul 2026, 23:25. Last compile: 24 jul 2026, 03:48

Structure

Enterprises with Non-Autonomous Pension Funds

Italy, Spain, Belgium

Code
sbs_pen_7e %>%
  filter(geo %in% c("IT", "ES", "BE"),
         nace_r1 == "TOTAL",
         indic_sb == "V11150",
         !is.na(values)) %>%
  year_to_date %>%
  left_join(colors, by = c("Geo" = "country")) %>%
  ggplot + geom_line(aes(x = date, y = values, color = color)) +
  geom_point(aes(x = date, y = values, color = color)) +
  theme_minimal() + scale_color_identity() + add_3flags +
  scale_x_date(breaks = as.Date(paste0(seq(1997, 2100, 2), "-01-01")),
               labels = date_format("%Y")) +
  xlab("") + ylab("Number of enterprises with non-autonomous pension funds")

Latest Available Year by Country

Code
sbs_pen_7e %>%
  filter(nace_r1 == "TOTAL",
         indic_sb == "V11150",
         !is.na(values)) %>%
  group_by(geo) %>%
  filter(time == max(time)) %>%
  ungroup() %>%
  select(Geo, time, values) %>%
  arrange(-values) %>%
  rename(Year = time, `Enterprises` = values) %>%
  print_table_conditional()
Geo Year Enterprises
Germany 1997 39233
Italy 2007 139
Greece 2007 33
Belgium 2005 29
Bulgaria 2007 0
Switzerland 1997 0
Czechia 2003 0
Denmark 1997 0
Spain 2007 0
Finland 2007 0
Hungary 2007 0
Lithuania 2007 0
Netherlands 2005 0
Norway 2007 0
Poland 2007 0
Slovenia 2006 0
Slovakia 2007 0