Which countries are structurally central in the global production network?
Treating the world economy as a weighted graph of intermediate-goods trade, a small set of countries anchor the network: every large flow either starts at them, passes through them, or ends at them. The question is not “who exports most” — that is already answered by trade tables — but who is most wired into the set of other well-wired countries. Two standard tools from network analysis make this precise: eigenvector centrality (Bonacich 1972; Newman 2010, chapter 7) and weighted-degree strength (Barrat, Barthélemy, Pastor-Satorras & Vespignani 2004, PNAS). When the graph is the production network, the centrality ranking is the map of whose disruption would propagate furthest into aggregate output (Acemoglu, Carvalho, Ozdaglar & Tahbaz-Salehi 2012, Econometrica).
Method and data caveat. We proxy intermediate goods by HS chapters 84 (mechanical machinery and parts) and 85 (electrical machinery and parts), which capture the bulk of BEC categories 41, 42, 51, and 53 (parts and capital goods) in the UN BEC Rev.5 – HS correspondence (UNSD, 2016). The workbench parquet build exports BACI bilateral flows only as total value, not per HS chapter, so we weight each directed bilateral flow fij by the exporter’s own HS 84-85 share of its total exports in the same year. That is a coarser approximation than a true per-HS bilateral network (which would require reprocessing the raw BACI CSV), but it preserves cross-country ordering when HS 84-85 intensity varies systematically by exporter, as it does here. Eigenvector centrality is computed by power iteration on the symmetric weighted adjacency Wij = intensityi·fij + intensityj·fji.
Who sits at the centre in 2024
Eigenvector centrality answers a recursive question: a country is central if it trades heavily with other central countries. The leading eigenvector of W encodes that definition uniquely under Perron–Frobenius (Newman 2010, §7.2). We rescale to [0, 1] by dividing through by the maximum; the top-ranked country scores 1.000. Countries not inside the top 50 by intermediate-proxy flow are excluded from the eigenvector computation.
Top 20 countries by eigenvector centrality in the intermediate-goods trade network, 2024
cite
@misc{hossen_2026_fig-eig-latest,
author = {Md Deluair Hossen},
title = {Top 20 countries by eigenvector centrality in the intermediate-goods trade network, 2024},
year = {2026},
howpublished = {TradeWeave Workbench},
url = {https://tradeweave.org#fig-eig-latest},
note = {Figure: Figure 1}
}show query
-- per-exporter HS 84-85 intensity (HS92 base + HS22 extension)
WITH hs AS (
SELECT country_code, SUM(export_value) AS hs
FROM 'data/parquet/country_year_product/year=2024/*.parquet'
WHERE (product_code LIKE '84%' OR product_code LIKE '85%') AND export_value > 0
GROUP BY country_code
),
tot AS (
SELECT country_code, SUM(export_value) AS tot
FROM 'data/parquet/country_year_product/year=2024/*.parquet'
WHERE export_value > 0 GROUP BY country_code
),
bilat AS (
SELECT exporter_code, importer_code, SUM(total_value) * 1000 AS v
FROM 'data/parquet/bilateral_year/year=2024/*.parquet'
WHERE total_value > 0 AND exporter_code <> importer_code
GROUP BY exporter_code, importer_code
)
SELECT b.exporter_code, b.importer_code,
b.v * (hs.hs / NULLIF(tot.tot, 0)) AS proxy_flow
FROM bilat b
JOIN hs ON hs.country_code = b.exporter_code
JOIN tot ON tot.country_code = b.exporter_code;
-- eigenvector centrality computed in TypeScript by power iteration.Who rose and who fell since 2000
A static centrality ranking is informative; the change in rank across a quarter-century is where the structural story sits. For every country in the top-50 panels of both 2000 and 2024, we take its eigenvector rank in each year and report the difference (rank2000 − rank2024). A positive value means the country has moved toward the core of the network; a negative value means it has fallen back. Carvalho (2014) emphasises that such shifts typically reflect a reorganisation of global value chains rather than a pure scale-up of trade.
Top 20 countries by eigenvector-centrality rank change, 2000-2024
Is centrality just size, or is something else going on?
The eigenvector ranking above has an obvious competing explanation: countries are central because they are big, and GDP already tracks economic mass. The production-network literature argues otherwise. Acemoglu et al. (2012) show that aggregate volatility depends on the eigenvector centrality of the input-output network, not on GDP per se, and that concentration of centrality in a few sectors or countries is what translates idiosyncratic shocks into macro fluctuations. An equivalent cross-country prediction: country-level centrality and GDP should be positively but imperfectly correlated, with identifiable outliers where centrality exceeds what GDP alone would suggest (classic trade hubs: Singapore, Netherlands, Belgium) or undershoots it (large commodity exporters).
Country eigenvector centrality versus GDP, 2024, log-log
Toy shock: if one country’s exports are halved, who feels it first?
Acemoglu et al. (2012) show formally that a negative productivity shock at a central node propagates through the input-output graph with a magnitude proportional to that node’s centrality. Here we run a much simpler, first-order version: halve country X’s HS 84-85-proxy exports to every partner, compute the loss each partner takes as a share of its own intermediate-goods imports, and list the ten most exposed partners. We do this for three candidate shocks — China, the United States, and Germany — chosen because they are the three most central nodes in Figure 1. This captures only the direct bilateral hit: it ignores substitution, re-exports, and higher-order Leontief propagation, and is therefore a strict lower bound on true exposure.
If CHN halved its HS 84-85-proxy exports, top 10 partners by loss as share of their intermediate-goods imports, 2024
If USA halved its HS 84-85-proxy exports, top 10 partners by loss as share of their intermediate-goods imports, 2024
If DEU halved its HS 84-85-proxy exports, top 10 partners by loss as share of their intermediate-goods imports, 2024
How large is this slice of trade, historically?
HS chapters 84 and 85 together have been the largest single block of world merchandise trade for decades. The time series below reports their combined share of world exports in the BACI parquet, 1995-2024, as context for the centrality numbers above: this is a large enough subuniverse that rankings on it are not a statistical artifact of a thin aggregate.
HS 84-85 share of world merchandise exports, 1995-2024
cite
@misc{hossen_2026_fig-hs8485-share,
author = {Md Deluair Hossen},
title = {HS 84-85 share of world merchandise exports, 1995-2024},
year = {2026},
howpublished = {TradeWeave Workbench},
url = {https://tradeweave.org#fig-hs8485-share},
note = {Figure: Figure 5}
}Is the production-network core getting narrower?
Figure 1 is a static ranking; but centrality inequality across the top-50 hub set is itself a time-varying object. We recompute eigenvector centrality on the intensity-weighted adjacency for eight years across the sample and report the Gini coefficient of the centrality vector in each year. Rising Gini = a shrinking, more top-heavy core. Falling Gini = the network is becoming more evenly wired. De Benedictis & Tajoli (2011, World Economy 34(11): 1417–1454) argued on earlier data that the world trade web had been concentrating; this is the eigenvector-centrality analogue.
Gini coefficient of eigenvector centrality across the top-50 intermediate-goods hubs, 1996-2024
cite
@misc{hossen_2026_fig-cent-gini,
author = {Md Deluair Hossen},
title = {Gini coefficient of eigenvector centrality across the top-50 intermediate-goods hubs, 1996-2024},
year = {2026},
howpublished = {TradeWeave Workbench},
url = {https://tradeweave.org#fig-cent-gini},
note = {Figure: Figure 6}
}Who rose and who fell in the post-GFC decade, 2010–2024
Figure 2 reports the long-run 2000–2024 shift; the post-global-financial-crisis decade is a distinct regime. Between 2010 and 2024 the production network absorbed the China slowdown (Autor, Dorn & Hanson 2021, NBER WP 29401), the 2018-2020 tariff escalation (Fajgelbaum & Khandelwal 2022, ARE), COVID supply-chain disruptions, and the post-2020 nearshoring wave. This figure isolates that decade by reporting eigenvector-centrality rank change over the shorter window.
Top 20 countries by eigenvector-centrality rank change, 2010-2024
Which hubs have been most positionally volatile across regimes?
A stable central hub (DEU, USA, CHN) should look positionally similar across 2000, 2010, and 2024: the three snapshots span the China-shock, post-GFC, and post-COVID regimes, and a structurally-anchored hub should survive all three. We measure that by the standard deviation of rescaled eigenvector centrality across the three panels for every country present in all three with centrality above 0.10 in at least one. High sigma flags hubs whose production-network standing has oscillated regime-to-regime — typically the candidate “switchers” whom Alfaro & Chor (2023) and Carvalho (2014) identify as GVC reshufflers.
Top 15 countries by three-panel centrality volatility (SD across 2000, 2010, 2024)
The spine: which bilateral edges carry the network
Figures 1 to 8 collapse the network into per-country summaries. Figure 9 reads the network the other way around and lists the single largest weighted bilateral edges in 2024: each entry is an exporter’s flow to one specific importer, weighted by that exporter’s HS 84-85 intensity, the same construction that feeds the eigenvector ranking. Hidalgo, Klinger, Barabási & Hausmann (2007, Science 317: 482–487) make the case for inspecting the underlying edges directly: the top-of-rank hubs in Figure 1 should be those that own the heaviest pairwise links, and the spine view validates or refutes that.
Top-15 weighted bilateral edges in the HS 84-85 production network, 2024
What this adds
- The core is narrow and has tilted east. Figure 1 shows a handful of countries holding eigenvector centrality above 0.5 on the rescaled index; Figure 2 shows that the movement from 2000 to 2024 is largely a rotation of that core toward Asia and toward near-shoring beneficiaries, consistent with the qualitative evidence in Alfaro & Chor (2023).
- Centrality is not just GDP. The log-log correlation in Figure 3 is high but not unity, and the residual structure isolates the classic trade hubs (Singapore, Netherlands, Belgium) from the non-hub-large-economy profile (commodity exporters). This cross-section is the country-level counterpart of the sectoral residual structure Carvalho (2014) identifies for the US input-output table.
- Exposure is concentrated on near neighbours, not biggest partners. Figure 4 shows that the import-side hit from halving a hub’s HS 84-85 exports falls disproportionately on geographic and block-partner neighbours, not on the largest partner by absolute value. This is the first-order mechanism behind the “trade-war contagion” literature (Fajgelbaum & Khandelwal 2022, Annual Review of Economics).
Open questions
- Eigenvector centrality here uses a symmetric intensity-weighted adjacency; Katz centrality with a decay parameter α (Newman 2010, §7.4) would let us trade off direct vs. indirect exposure and is the natural robustness check. So would betweenness centrality on a sparsified top-k-edges version of the graph.
- A true per-HS bilateral network — BACI HS6 × exporter × importer — would replace the exporter-intensity approximation and let us study machinery vs. electronics separately. That requires reprocessing the raw BACI CSV into a workbench-side partitioned parquet; out of scope here.
- The first-order shock in Figure 4 is a strict lower bound on exposure. A Leontief inversion on a world IO matrix (OECD ICIO, Eora) would propagate shocks through all higher-order input linkages per Acemoglu et al. (2012, Prop. 2).
References
- Acemoglu, D., Carvalho, V. M., Ozdaglar, A., & Tahbaz-Salehi, A. (2012). “The Network Origins of Aggregate Fluctuations.” Econometrica 80(5): 1977–2016.
- Alfaro, L., & Chor, D. (2023). “Global Supply Chains: The Looming ‘Great Reallocation’.” NBER Working Paper 31661.
- Autor, D. H., Dorn, D., & Hanson, G. H. (2013). “The China Syndrome: Local Labor Market Effects of Import Competition in the United States.” American Economic Review 103(6): 2121–2168.
- Barrat, A., Barthélemy, M., Pastor-Satorras, R., & Vespignani, A. (2004). “The architecture of complex weighted networks.” Proceedings of the National Academy of Sciences 101(11): 3747–3752.
- Bonacich, P. (1972). “Factoring and weighting approaches to status scores and clique identification.” Journal of Mathematical Sociology 2(1): 113–120.
- Carvalho, V. M. (2014). “From Micro to Macro via Production Networks.” Journal of Economic Perspectives 28(4): 23–48.
- Fagiolo, G., Reyes, J., & Schiavo, S. (2010). “The evolution of the world trade web: a weighted-network analysis.” Journal of Evolutionary Economics 20(4): 479–514.
- Fajgelbaum, P. D., & Khandelwal, A. K. (2022). “The Economic Impacts of the US-China Trade War.” Annual Review of Economics 14: 205–228.
- Hidalgo, C. A., Klinger, B., Barabási, A.-L., & Hausmann, R. (2007). “The Product Space Conditions the Development of Nations.” Science 317(5837): 482–487.
- Newman, M. E. J. (2010). Networks: An Introduction. Oxford University Press, chapter 7.
- United Nations Statistics Division (2016). Classification by Broad Economic Categories, Revision 5. UNSD Series M, No. 53, Rev.5, Annex III (BEC – HS correspondence).
Related analyses
- Semiconductor decoupling — shock propagation through the machinery/electronics backbone
- Services as intermediates — the non-goods layer of the production network
- RCA persistence — how sticky is comparative advantage in these hub sectors?
- Hidden champions — small countries with outsized centrality
- Trade-cost asymmetry — directional frictions on the same weighted graph