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

Data - Eurostat

Info

Last observation: Annual: 2014 (N = 2,609)

First observation: Annual: 2008 (N = 2,632)

Last data update: 23 jul 2026, 22:36. Last compile: 24 jul 2026, 01:53

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_4flags +
  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€)")

indic_sb

Code
htec_eco_sbs2 %>%
  
  group_by(indic_sb, Indic_sb) %>%
  summarise(Nobs = n()) %>%
  arrange(-Nobs) %>%
  print_table_conditional
indic_sb Indic_sb Nobs
V12110 Turnover or gross premiums written - million euro 1947
V12120 Production value - million euro 1946
V13110 Total purchases of goods and services - million euro 1946
V13320 Wages and Salaries - million euro 1941
V12150 Value added at factor cost - million euro 1937
V12170 Gross operating surplus - million euro 1935
V13310 Personnel costs - million euro 1931
V13330 Social security costs - million euro 1931
V15110 Gross investment in tangible goods - million euro 1896
V91210 Average personnel costs (personnel costs per employee) - thousand euro 1832

nace_r2

Code
htec_eco_sbs2 %>%
  
  group_by(nace_r2, Nace_r2) %>%
  summarise(Nobs = n()) %>%
  arrange(-Nobs) %>%
  print_table_conditional
nace_r2 Nace_r2 Nobs
C Manufacturing 2155
C_HTC_M Medium high-technology manufacturing 2155
C_HTC High-technology manufacturing 2154
C_LTC_M Medium low-technology manufacturing 2148
KIS_HTC Knowledge-intensive high-technology services 2143
HTC High-technology sectors (high-technology manufacturing and knowledge-intensive high-technology services) 2140
KIS_MKT_OTH Knowledge-intensive market services (except financial intermediation and high-technology services) 2140
C_LTC Low-technology manufacturing 2123
LKIS_MKT Less knowledge-intensive market services 2084

currency

Code
htec_eco_sbs2 %>%
  
  group_by(currency, Currency) %>%
  summarise(Nobs = n()) %>%
  arrange(-Nobs) %>%
  print_table_conditional
currency Currency Nobs
MIO_EUR Million euro 19242