High-tech exports - Exports of high technology products as a share of total exports (from 2007, SITC Rev. 4) - htec_si_exp4

Data - Eurostat

Info

Last observation: 2022 (N = 31)

First observation: 2007 (N = 31)

Last data update: 14 aoû 2026, 23:35. Last compile: 18 aoû 2026, 01:25

Structure

High-Tech Exports, Share of Total Exports

France, Germany, Italy, Ireland, Netherlands

Code
htec_si_exp4 |>
  filter(geo %in% c("FR", "DE", "IT", "IE", "NL")) |>
  year_to_date() |>
  left_join(colors, by = c("Geo" = "country")) |>
  mutate(values = values / 100) |>
  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, 2), "-01-01")),
               labels = date_format("%Y")) +
  xlab("") + ylab("High-tech exports (share of total exports)") +
  scale_y_continuous(labels = scales::percent_format(accuracy = 1))

Latest Year, Ranking

Code
latest_yr <- htec_si_exp4 |>
  filter(!is.na(values)) |>
  summarise(m = max(time)) |>
  pull(m)

htec_si_exp4 |>
  filter(time == latest_yr,
         !is.na(values)) |>
  select(Geo, values) |>
  arrange(desc(values)) |>
  print_table_conditional()