Economic data in high-tech sectors by NACE Rev.2 activity - htec_eco_sbs2

Data - Eurostat

Info

Last observation: 2014 (N = 1983)

First observation: 2008 (N = 1734)

Last data update: 14 aoû 2026, 21:03. Last compile: 18 aoû 2026, 01:24

Structure

France, Germany, Spain, Italy

Value Added, High-Technology Sectors

Code
htec_eco_sbs2 |>
  filter(geo %in% c("FR", "DE", "ES", "IT"),
         nace_r2 == "HTC",
         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(2005, 2100, 1), "-01-01")),
               labels = date_format("%Y")) +
  xlab("") + ylab("Value added at factor cost, high-tech sectors (Bn€)")

France, 2014

Turnover by Sector

Code
htec_eco_sbs2 |>
  filter(geo == "FR",
         indic_sb == "V12110",
         time == "2014") |>
  mutate(values = values/1000) |>
  ggplot() + geom_col(aes(x = reorder(Nace_r2, values), y = values), fill = "steelblue") +
  coord_flip() +
  theme_minimal() +
  xlab("") + ylab("Turnover (Bn€)")