Economic data in high-tech sectors by NACE Rev.1.1 activity - htec_eco_sbs

Data - Eurostat

Info

Last observation: 2007 (N = 1068)

First observation: 1995 (N = 412)

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

Structure

High-Technology Sectors: Value Added

France, Germany, Italy, Spain, United Kingdom

Code
htec_eco_sbs |>
  filter(geo %in% c("FR", "DE", "IT", "ES", "UK"),
         nace_r1 == "HTC",
         indic_sb == "V12150") |>
  year_to_date() |>
  mutate(values = values/1000) |>
  left_join(colors, by = c("Geo" = "country")) |>
  mutate(color = ifelse(geo == "ES", color2, color)) |>
  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(1995, 2100, 2), "-01-01")),
               labels = date_format("%Y")) +
  xlab("") + ylab("Value added at factor cost, high-technology sectors (Bn€)")

France: Manufacturing vs. Services

Code
htec_eco_sbs |>
  filter(geo == "FR",
         nace_r1 %in% c("D_HTC", "KIS_HTC"),
         indic_sb == "V12150") |>
  year_to_date() |>
  ggplot() + geom_line(aes(x = date, y = values, color = Nace_r1)) +
  theme_minimal() +
  scale_x_date(breaks = as.Date(paste0(seq(1995, 2100, 2), "-01-01")),
               labels = date_format("%Y")) +
  theme(legend.position = "bottom",
        legend.title = element_blank()) +
  xlab("") + ylab("Value added at factor cost (Mio EUR)")

Latest Year by Country

Code
latest_t <- htec_eco_sbs |>
  filter(nace_r1 == "HTC", indic_sb == "V12150", !is.na(values)) |>
  summarise(m = max(time)) |>
  pull(m)

htec_eco_sbs |>
  filter(nace_r1 == "HTC",
         indic_sb %in% c("V12110", "V12150", "V15110"),
         time == latest_t) |>
  select(Indic_sb, Geo, values) |>
  spread(Geo, values) |>
  print_table_conditional()
Indic_sb Austria Belgium Bulgaria Cyprus Czechia Denmark Estonia Finland France Germany Greece Hungary Ireland Italy Latvia Lithuania Luxembourg Netherlands Norway Poland Portugal Romania Slovakia Slovenia Spain Sweden United Kingdom
Gross investment in tangible goods - million euro 1915 1841 NA NA NA NA NA 1179 15444 16326 1280 1353 2426 9881 NA 227 NA NA 1517 NA NA 2738 718 NA 5891 NA NA
Turnover or gross premiums written - million euro 27337 48061 3364 NA NA NA NA 55055 265648 356362 13737 31161 67964 156725 NA 1945 NA NA 24247 31358 NA 10512 9602 NA 99249 NA 320246
Value added at factor cost - million euro 12007 20722 1495 NA NA NA NA 15661 106254 147214 6506 6647 17294 70659 NA 755 NA NA 10732 12437 NA 4504 2494 NA 41403 NA 156982