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: Annual: 2022 (N = 31)

First observation: Annual: 2007 (N = 31)

Last data update: 24 jul 2026, 00:20. Last compile: 24 jul 2026, 01:54

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_5flags +
  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()

unit

Code
htec_si_exp4 %>%
  
  group_by(unit, Unit) %>%
  summarise(Nobs = n()) %>%
  arrange(-Nobs) %>%
  print_table_conditional
unit Unit Nobs
PC Percentage 496