Producer prices in industry, non domestic market - monthly data - sts_inppnd_m
Data - Eurostat
Last observation: juil. 2026 (N = 15612)
First observation: janv. 1962 (N = 88)
Last data update: 03 sept. 2026, 23:02
Last compile: 04 sept. 2026, 00:30
Structure
France, Germany, Italy
C - Manufacturing
All
Code
sts_inppnd_m |>
filter(nace_r2 == "C",
indic_bt == "PRC_PRR_NDOM",
unit == "I21",
geo %in% c("FR", "DE", "IT")) |>
select(geo, Geo, time, values) |>
group_by(geo) |>
mutate(values = 100*values/values[time == "2000M01"]) |>
mutate(Geo = ifelse(geo == "DE", "Germany", Geo)) |>
month_to_date() |>
add_flag_color("Geo") |>
ggplot() + ylab("Non-domestic output price index - in national currency") + xlab("") + theme_minimal() +
geom_line(aes(x = date, y = values, color = color)) +
scale_color_identity() + add_flags +
scale_color_manual(values = c("#0055a4", "#000000", "#008c45")) +
scale_x_date(breaks = seq(1920, 2100, 5) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) + add_flags +
theme(legend.position = "none") +
scale_y_log10(breaks = seq(-60, 300, 10))
2000-
Code
sts_inppnd_m |>
filter(nace_r2 == "C",
indic_bt == "PRC_PRR_NDOM",
unit == "I21",
geo %in% c("FR", "DE", "IT")) |>
select(geo, Geo, time, values) |>
group_by(geo) |>
mutate(values = 100*values/values[time == "2000M01"]) |>
mutate(Geo = ifelse(geo == "DE", "Germany", Geo)) |>
month_to_date() |>
filter(date >= as.Date("2000-01-01")) |>
add_flag_color("Geo") |>
ggplot() + ylab("Non-domestic output price index - in national currency") + xlab("") + theme_minimal() +
geom_line(aes(x = date, y = values, color = color)) +
scale_color_identity() + add_flags +
scale_color_manual(values = c("#0055a4", "#000000", "#008c45")) +
scale_x_date(breaks = seq(1920, 2100, 5) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) + add_flags +
theme(legend.position = "none") +
scale_y_log10(breaks = seq(-60, 300, 5))
2010-
Code
sts_inppnd_m |>
filter(nace_r2 == "C",
indic_bt == "PRC_PRR_NDOM",
unit == "I21",
geo %in% c("FR", "DE", "IT")) |>
select(geo, Geo, time, values) |>
group_by(geo) |>
mutate(values = 100*values/values[time == "2010M01"]) |>
mutate(Geo = ifelse(geo == "DE", "Germany", Geo)) |>
month_to_date() |>
filter(date >= as.Date("2010-01-01")) |>
add_flag_color("Geo") |>
ggplot() + ylab("Non-domestic output price index - in national currency") + xlab("") + theme_minimal() +
geom_line(aes(x = date, y = values, color = color)) +
scale_color_identity() + add_flags +
scale_color_manual(values = c("#0055a4", "#000000", "#008c45")) +
scale_x_date(breaks = seq(1920, 2100, 2) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) + add_flags +
theme(legend.position = "none") +
scale_y_log10(breaks = seq(-60, 300, 5))
2018-
Code
sts_inppnd_m |>
filter(nace_r2 == "C",
indic_bt == "PRC_PRR_NDOM",
unit == "I21",
geo %in% c("FR", "DE", "IT")) |>
select(geo, Geo, time, values) |>
group_by(geo) |>
mutate(values = 100*values/values[time == "2018M01"]) |>
mutate(Geo = ifelse(geo == "DE", "Germany", Geo)) |>
month_to_date() |>
filter(date >= as.Date("2018-01-01")) |>
add_flag_color("Geo") |>
ggplot() + ylab("Non-domestic output price index - in national currency") + xlab("") + theme_minimal() +
geom_line(aes(x = date, y = values, color = color)) +
scale_color_identity() + add_flags +
scale_color_manual(values = c("#0055a4", "#000000", "#008c45")) +
scale_x_date(breaks = seq(1920, 2100, 1) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) + add_flags +
theme(legend.position = "none") +
scale_y_log10(breaks = seq(-60, 300, 5))
2020-
Code
sts_inppnd_m |>
filter(nace_r2 == "C",
indic_bt == "PRC_PRR_NDOM",
unit == "I21",
geo %in% c("FR", "DE", "IT")) |>
select(geo, Geo, time, values) |>
group_by(geo) |>
mutate(values = 100*values/values[time == "2020M01"]) |>
mutate(Geo = ifelse(geo == "DE", "Germany", Geo)) |>
month_to_date() |>
filter(date >= as.Date("2020-01-01")) |>
add_flag_color("Geo") |>
ggplot() + ylab("Non-domestic output price index - in national currency") + xlab("") + theme_minimal() +
geom_line(aes(x = date, y = values, color = color)) +
scale_color_identity() + add_flags +
scale_color_manual(values = c("#0055a4", "#000000", "#008c45")) +
scale_x_date(breaks = seq(1920, 2100, 1) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) + add_flags +
theme(legend.position = "none") +
scale_y_log10(breaks = seq(-60, 300, 5))
C21 - Manufacture of basic pharmaceutical products and pharmaceutical preparations
All
Code
sts_inppnd_m |>
filter(nace_r2 == "C21",
indic_bt == "PRC_PRR_NDOM",
unit == "I21",
geo %in% c("FR", "DE", "IT")) |>
select(geo, Geo, time, values) |>
group_by(geo) |>
mutate(values = 100*values/values[time == "2000M01"]) |>
mutate(Geo = ifelse(geo == "DE", "Germany", Geo)) |>
month_to_date() |>
add_flag_color("Geo") |>
ggplot() + ylab("Non-domestic output price index - in national currency") + xlab("") + theme_minimal() +
geom_line(aes(x = date, y = values, color = color)) +
scale_color_identity() + add_flags +
scale_color_manual(values = c("#0055a4", "#000000", "#008c45")) +
scale_x_date(breaks = seq(1920, 2100, 5) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) + add_flags +
theme(legend.position = "none") +
scale_y_log10(breaks = seq(-60, 300, 10))
2000-
Code
sts_inppnd_m |>
filter(nace_r2 == "C21",
indic_bt == "PRC_PRR_NDOM",
unit == "I21",
geo %in% c("FR", "DE", "IT")) |>
select(geo, Geo, time, values) |>
group_by(geo) |>
mutate(values = 100*values/values[time == "2000M01"]) |>
mutate(Geo = ifelse(geo == "DE", "Germany", Geo)) |>
month_to_date() |>
filter(date >= as.Date("2000-01-01")) |>
add_flag_color("Geo") |>
ggplot() + ylab("Non-domestic output price index - in national currency") + xlab("") + theme_minimal() +
geom_line(aes(x = date, y = values, color = color)) +
scale_color_identity() + add_flags +
scale_color_manual(values = c("#0055a4", "#000000", "#008c45")) +
scale_x_date(breaks = seq(1920, 2100, 5) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) + add_flags +
theme(legend.position = "none") +
scale_y_log10(breaks = seq(-60, 300, 5))
2010-
Code
sts_inppnd_m |>
filter(nace_r2 == "C21",
indic_bt == "PRC_PRR_NDOM",
unit == "I21",
geo %in% c("FR", "DE", "IT")) |>
select(geo, Geo, time, values) |>
group_by(geo) |>
mutate(values = 100*values/values[time == "2010M01"]) |>
mutate(Geo = ifelse(geo == "DE", "Germany", Geo)) |>
month_to_date() |>
filter(date >= as.Date("2010-01-01")) |>
add_flag_color("Geo") |>
ggplot() + ylab("Non-domestic output price index - in national currency") + xlab("") + theme_minimal() +
geom_line(aes(x = date, y = values, color = color)) +
scale_color_identity() + add_flags +
scale_color_manual(values = c("#0055a4", "#000000", "#008c45")) +
scale_x_date(breaks = seq(1920, 2100, 5) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) + add_flags +
theme(legend.position = "none") +
scale_y_log10(breaks = seq(-60, 300, 5))
2020-
Code
sts_inppnd_m |>
filter(nace_r2 == "C21",
indic_bt == "PRC_PRR_NDOM",
unit == "I21",
geo %in% c("FR", "DE", "IT")) |>
select(geo, Geo, time, values) |>
group_by(geo) |>
mutate(values = 100*values/values[time == "2020M01"]) |>
mutate(Geo = ifelse(geo == "DE", "Germany", Geo)) |>
month_to_date() |>
filter(date >= as.Date("2020-01-01")) |>
add_flag_color("Geo") |>
ggplot() + ylab("Non-domestic output price index - in national currency") + xlab("") + theme_minimal() +
geom_line(aes(x = date, y = values, color = color)) +
scale_color_identity() + add_flags +
scale_color_manual(values = c("#0055a4", "#000000", "#008c45")) +
scale_x_date(breaks = seq(1920, 2100, 1) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) + add_flags +
theme(legend.position = "none") +
scale_y_log10(breaks = seq(-60, 300, 5))
Other data
Data on industry
| source | dataset | Title | Updated |
|---|---|---|---|
ec |
INDUSTRY | Industry (sector data) - INDUSTRY | 2026-08-01 |
eurostat |
ei_isin_m | Industry - monthly data - index (2015 = 100) (NACE Rev. 2) - ei_isin_m | 2026-08-30 |
eurostat |
htec_trd_group4 | High-tech trade by high-tech group of products in million euro (from 2007, SITC Rev. 4) - htec_trd_group4 | 2026-07-14 |
eurostat |
nama_10_a64 | National accounts aggregates by industry (up to NACE A*64) - nama_10_a64 | 2026-08-28 |
eurostat |
nama_10_a64_e | National accounts employment data by industry (up to NACE A*64) - nama_10_a64_e | 2026-08-04 |
eurostat |
namq_10_a10_e | Employment A*10 industry breakdowns - namq_10_a10_e | 2026-08-31 |
eurostat |
road_eqr_carmot | New registrations of passenger cars by type of motor energy and engine size - road_eqr_carmot | 2026-07-31 |
eurostat |
sts_inpp_m | Producer prices in industry, total - monthly data - sts_inpp_m | 2026-08-30 |
eurostat |
sts_inppd_m | Producer prices in industry, domestic market - monthly data - sts_inppd_m | 2026-08-30 |
eurostat |
sts_inpr_m | Production in industry - monthly data - sts_inpr_m | 2026-08-28 |
eurostat |
sts_intvnd_m | Turnover in industry, non domestic market - monthly data - sts_intvnd_m | 2026-08-30 |
fred |
industry | Manufacturing, Industry - industry | 2026-09-01 |
oecd |
ALFS_EMP | Employment by activities and status (ALFS) - ALFS_EMP | 2026-08-02 |
oecd |
BERD_MA_SOF | Business enterprise R&D expenditure by main activity (focussed) and source of funds - BERD_MA_SOF | 2026-08-02 |
oecd |
GBARD_NABS2007 | Government budget allocations for R and D - GBARD_NABS2007 | 2026-08-02 |
oecd |
MEI_REAL | Production and Sales (MEI) - MEI_REAL | 2026-08-02 |
oecd |
MSTI_PUB | Main Science and Technology Indicators - MSTI_PUB | 2026-08-02 |
oecd |
SNA_TABLE4 | PPPs and exchange rates - SNA_TABLE4 | 2026-08-02 |
wdi |
NV.IND.EMPL.KD | Industry, value added per worker (constant 2010 USD) - NV.IND.EMPL.KD | 2026-09-01 |
wdi |
NV.IND.MANF.CD | Manufacturing, value added (current USD) - NV.IND.MANF.CD | 2026-09-01 |
wdi |
NV.IND.MANF.ZS | Manufacturing, value added (% of GDP) - NV.IND.MANF.ZS | 2026-09-01 |
wdi |
NV.IND.TOTL.KD | Industry (including construction), value added (constant 2015 USD) - NV.IND.TOTL.KD | 2026-09-01 |
wdi |
NV.IND.TOTL.ZS | Industry, value added (including construction) (% of GDP) - NV.IND.TOTL.ZS | 2026-09-01 |
wdi |
SL.IND.EMPL.ZS | Employment in industry (% of total employment) - SL.IND.EMPL.ZS | 2026-09-01 |
wdi |
TX.VAL.MRCH.CD.WT | Merchandise exports (current USD) - TX.VAL.MRCH.CD.WT | 2026-09-01 |
Info
Code
include_graphics("https://ec.europa.eu/eurostat/statistics-explained/images/3/33/EU%2C_EA-19_Industrial_producer_prices%2C_total%2C_domestic_and_non-domestic_market%2C_2010_-_2022%2C_undadjusted_data_%282015_%3D_100%29_01-06-2022.png")



