Annual detailed enterprise statistics for industry (NACE Rev. 2, B-E) - sbs_na_ind_r2

Data - Eurostat

Info

Last observation: 2020 (N = 465507)

First observation: 2005 (N = 15565)

Last data update: 14 aoû 2026, 20:15. Last compile: 18 aoû 2026, 03:59

Structure

Manufacturing

Value Added: France, Germany, Italy, Spain

Code
sbs_na_ind_r2 |>
  filter(geo %in% c("FR", "DE", "IT", "ES"),
         nace_r2 == "C",
         indic_sb == "V12150") |>
  year_to_date() |>
  left_join(colors, by = c("Geo" = "country")) |>
  mutate(values = values/1000) |>
  ggplot() + geom_line(aes(x = date, y = values, color = color)) +
  theme_minimal() + scale_color_identity() + add_flags +
  scale_x_date(breaks = as.Date(paste0(seq(2000, 2100, 2), "-01-01")),
               labels = date_format("%Y")) +
  xlab("") + ylab("Manufacturing value added at factor cost (Bn€)")

Apparent Labour Productivity: France, Germany, Italy, Spain

Code
sbs_na_ind_r2 |>
  filter(geo %in% c("FR", "DE", "IT", "ES"),
         nace_r2 == "C",
         indic_sb == "V91110") |>
  year_to_date() |>
  left_join(colors, by = c("Geo" = "country")) |>
  ggplot() + geom_line(aes(x = date, y = values, color = color)) +
  theme_minimal() + scale_color_identity() + add_flags +
  scale_x_date(breaks = as.Date(paste0(seq(2000, 2100, 2), "-01-01")),
               labels = date_format("%Y")) +
  xlab("") + ylab("Apparent labour productivity (Value added per person employed, thousand €)")