Industry, value added per worker (constant 2010 USD)

Data - WDI

Info

Last observation: 2025 (N = 7,153)

First observation: 1991 (N = 7,153)

Last data update: 13 aoû 2026, 22:42. Last compile: 13 aoû 2026, 23:26

Info

Data on industry

source dataset Title Download Compile
wdi NV.IND.EMPL.KD Industry, value added per worker (constant 2010 USD) NA [2026-08-12]
ec INDUSTRY Industry (sector data) 2026-08-13 [2026-08-12]
eurostat ei_isin_m Industry - monthly data - index (2015 = 100) (NACE Rev. 2) - ei_isin_m NA [2026-08-13]
eurostat htec_trd_group4 High-tech trade by high-tech group of products in million euro (from 2007, SITC Rev. 4) NA [2026-08-13]
eurostat nama_10_a64 National accounts aggregates by industry (up to NACE A*64) NA [2026-08-13]
eurostat nama_10_a64_e National accounts employment data by industry (up to NACE A*64) NA [2026-08-13]
eurostat namq_10_a10_e Employment A*10 industry breakdowns NA [2026-08-13]
eurostat road_eqr_carmot New registrations of passenger cars by type of motor energy and engine size - road_eqr_carmot NA [2026-08-13]
eurostat sts_inpp_m Producer prices in industry, total - monthly data NA [2026-08-13]
eurostat sts_inppd_m Producer prices in industry, domestic market - monthly data NA [2026-08-13]
eurostat sts_inpr_m Production in industry - monthly data NA [2026-08-13]
eurostat sts_intvnd_m Turnover in industry, non domestic market - monthly data - sts_intvnd_m NA [2026-08-13]
fred industry Manufacturing, Industry NA [2026-08-13]
oecd ALFS_EMP Employment by activities and status (ALFS) NA [2026-08-13]
oecd BERD_MA_SOF Business enterprise R&D expenditure by main activity (focussed) and source of funds NA [2026-08-13]
oecd GBARD_NABS2007 Government budget allocations for R and D NA [2026-08-13]
oecd MEI_REAL Production and Sales (MEI) NA [2026-08-13]
oecd MSTI_PUB Main Science and Technology Indicators NA [2026-08-13]
oecd SNA_TABLE4 PPPs and exchange rates NA [2026-08-13]
wdi NV.IND.MANF.CD Manufacturing, value added (current USD) NA [2026-08-12]
wdi NV.IND.MANF.ZS Manufacturing, value added (% of GDP) NA [2026-08-12]
wdi NV.IND.TOTL.KD Industry (including construction), value added (constant 2015 USD) - NV.IND.TOTL.KD NA [2026-08-12]
wdi NV.IND.TOTL.ZS Industry, value added (including construction) (% of GDP) NA [2026-08-12]
wdi SL.IND.EMPL.ZS Employment in industry (% of total employment) NA [2026-08-12]
wdi TX.VAL.MRCH.CD.WT Merchandise exports (current USD) NA [2026-08-12]

LAST_COMPILE

LAST_COMPILE
2026-08-13

Last

year Nobs
2025 191
2024 215
2023 216

Nobs - Javascript

Code
NV.IND.EMPL.KD |>
  left_join(iso2c, by = "iso2c") |>
  group_by(iso2c, Iso2c) |>
  mutate(value = round(value, 1)) |>
  summarise(Nobs = n(),
            `Year 1` = first(year),
            `Value added in Industry 1 (%)` = first(value),
            `Year 2` = last(year),
            `Value added in Industry 2 (%)` = last(value)) |>
  arrange(-`Value added in Industry 2 (%)`) %>%
  {if (is_html_output()) datatable(., filter = 'top', rownames = F) else .}

Japan

Code
NV.IND.EMPL.KD |>
  filter(iso2c %in% c("JP")) |>
  left_join(iso2c, by = "iso2c") |>
  year_to_date() |>
  ggplot() + geom_line(aes(x = date, y = value)) +
  xlab("") + ylab("Industry, value added per worker") + theme_minimal() +
  theme(legend.title = element_blank(),
        legend.position = c(0.2, 0.2)) +
  scale_x_date(breaks = seq(1950, 2100, 5) |> paste0("-01-01") |> as.Date(),
               labels = date_format("%Y")) +
  scale_y_continuous(breaks = seq(0, 200000, 10000),
                     labels = comma)

China, France, Germany

Code
NV.IND.EMPL.KD |>
  filter(iso2c %in% c("CN", "FR", "DE")) |>
  left_join(iso2c, by = "iso2c") |>
  year_to_date() |>
  left_join(colors, by = c("Iso2c" = "country")) |>
  mutate(value = value) |>
  ggplot() + geom_line(aes(x = date, y = value, color = color)) +
  theme_minimal() + scale_color_identity() + add_flags + theme_minimal() +
  theme(legend.title = element_blank(),
        legend.position = c(0.15, 0.9)) +
  scale_x_date(breaks = seq(1950, 2100, 5) |> paste0("-01-01") |> as.Date(),
               labels = date_format("%Y")) +
  scale_y_continuous(breaks = seq(0, 200000, 10000),
                     labels = dollar_format()) +
  xlab("") + ylab("Industry, value added per worker")

Italy, Portugal, Spain

Code
NV.IND.EMPL.KD |>
  filter(iso2c %in% c("ES", "IT", "PT")) |>
  left_join(iso2c, by = "iso2c") |>
  year_to_date() |>
  left_join(colors, by = c("Iso2c" = "country")) |>
  mutate(value = value) |>
  ggplot() + geom_line(aes(x = date, y = value, color = color)) +
  theme_minimal() + scale_color_identity() + add_flags + theme_minimal() +
  theme(legend.title = element_blank(),
        legend.position = c(0.15, 0.9)) +
  scale_x_date(breaks = seq(1950, 2100, 5) |> paste0("-01-01") |> as.Date(),
               labels = date_format("%Y")) +
  scale_y_continuous(breaks = seq(0, 200000, 10000),
                     labels = dollar_format()) +
  xlab("") + ylab("Industry, value added per worker")

Spain, United Kingdom, United States

Linear

Code
NV.IND.EMPL.KD |>
  filter(iso2c %in% c("US", "GB", "ES")) |>
  left_join(iso2c, by = "iso2c") |>
  year_to_date() |>
  left_join(colors, by = c("Iso2c" = "country")) |>
  mutate(value = value) |>
  ggplot() + geom_line(aes(x = date, y = value, color = color)) +
  theme_minimal() + scale_color_identity() + add_flags + theme_minimal() +
  theme(legend.title = element_blank(),
        legend.position = c(0.15, 0.9)) +
  scale_x_date(breaks = seq(1950, 2100, 5) |> paste0("-01-01") |> as.Date(),
               labels = date_format("%Y")) +
  scale_y_continuous(breaks = seq(0, 200000, 10000),
                     labels = dollar_format()) +
  xlab("") + ylab("Industry, value added per worker")

Log

Code
NV.IND.EMPL.KD |>
  filter(iso2c %in% c("US", "GB", "ES")) |>
  left_join(iso2c, by = "iso2c") |>
  year_to_date() |>
  left_join(colors, by = c("Iso2c" = "country")) |>
  mutate(value = value) |>
  ggplot() + geom_line(aes(x = date, y = value, color = color)) +
  theme_minimal() + scale_color_identity() + add_flags + theme_minimal() +
  theme(legend.title = element_blank(),
        legend.position = c(0.15, 0.9)) +
  scale_x_date(breaks = seq(1950, 2100, 5) |> paste0("-01-01") |> as.Date(),
               labels = date_format("%Y")) +
  scale_y_log10(breaks = seq(0, 200000, 10000),
                     labels = dollar_format()) +
  xlab("") + ylab("Industry, value added per worker")

Argentina, Chile, Venezuela

Code
NV.IND.EMPL.KD |>
  filter(iso2c %in% c("AR", "CL", "VE")) |>
  left_join(iso2c, by = "iso2c") |>
  year_to_date() |>
  left_join(colors, by = c("Iso2c" = "country")) |>
  mutate(value = value) |>
  ggplot() + geom_line(aes(x = date, y = value, color = color)) +
  theme_minimal() + scale_color_identity() + add_flags + theme_minimal() +
  theme(legend.title = element_blank(),
        legend.position = c(0.15, 0.9)) +
  scale_x_date(breaks = seq(1950, 2100, 5) |> paste0("-01-01") |> as.Date(),
               labels = date_format("%Y")) +
  scale_y_log10(breaks = seq(0, 200000, 10000),
                     labels = dollar_format()) +
  xlab("") + ylab("Industry, value added per worker")

Greece, Hong Kong, Mexico

Code
NV.IND.EMPL.KD |>
  filter(iso2c %in% c("GR", "HK", "MX")) |>
  left_join(iso2c, by = "iso2c") |>
  mutate(Iso2c = ifelse(iso2c == "HK", "Hong Kong", Iso2c)) |>
  year_to_date() |>
  left_join(colors, by = c("Iso2c" = "country")) |>
  mutate(value = value) |>
  ggplot() + geom_line(aes(x = date, y = value, color = color)) +
  theme_minimal() + scale_color_identity() + add_flags + theme_minimal() +
  theme(legend.title = element_blank(),
        legend.position = c(0.15, 0.9)) +
  scale_x_date(breaks = seq(1950, 2100, 5) |> paste0("-01-01") |> as.Date(),
               labels = date_format("%Y")) +
  scale_y_log10(breaks = seq(0, 200000, 5000),
                     labels = dollar_format(a = 1)) +
  xlab("") + ylab("Industry, value added per worker")