<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>development | Carlos Mendez</title><link>https://carlos-mendez.org/tag/development/</link><atom:link href="https://carlos-mendez.org/tag/development/index.xml" rel="self" type="application/rss+xml"/><description>development</description><generator>Wowchemy (https://wowchemy.com)</generator><language>en-us</language><copyright>Carlos Mendez</copyright><lastBuildDate>Wed, 29 Apr 2026 00:00:00 +0000</lastBuildDate><image><url>https://carlos-mendez.org/media/icon_huedfae549300b4ca5d201a9bd09a3ecd5_79625_512x512_fill_lanczos_center_3.png</url><title>development</title><link>https://carlos-mendez.org/tag/development/</link></image><item><title>Converging to Convergence: Understanding the Main Ideas of the Convergence Literature</title><link>https://carlos-mendez.org/post/stata_convergence2/</link><pubDate>Wed, 29 Apr 2026 00:00:00 +0000</pubDate><guid>https://carlos-mendez.org/post/stata_convergence2/</guid><description>&lt;h2 id="1-overview">1. Overview&lt;/h2>
&lt;p>For decades, one of the most important questions in economics has been: are poor countries catching up to rich ones? The answer has changed dramatically over time. In the 1960s, richer countries actually grew &lt;em>faster&lt;/em> than poorer ones &amp;mdash; a pattern called &lt;strong>divergence&lt;/strong>. By the 2000s, this had reversed: poor countries were growing significantly faster, a phenomenon known as &lt;strong>unconditional convergence&lt;/strong> (also called absolute convergence). What caused this shift?&lt;/p>
&lt;p>This tutorial walks through the key ideas of the convergence literature by reproducing the main findings of Kremer, Willis, and You (2021), &amp;ldquo;Converging to Convergence.&amp;rdquo; The paper provides an elegant explanation: the world has &amp;ldquo;converged to convergence&amp;rdquo; because growth correlates &amp;mdash; the policies, institutions, and human capital variables that predict economic growth &amp;mdash; have themselves converged across countries. As poor countries improved their institutions and policies, the gap between unconditional convergence (a simple comparison of growth rates across income levels) and conditional convergence (controlling for institutions) closed. The central tool for understanding this is the &lt;strong>omitted variable bias (OVB) formula&lt;/strong>, which decomposes exactly &lt;em>how much&lt;/em> each growth correlate contributes to the convergence gap.&lt;/p>
&lt;p>We use the authors' replication dataset, which combines Penn World Table 10.0 GDP data with over 50 institutional, policy, and cultural variables for approximately 160 countries from 1960 to 2017. The analysis is entirely &lt;strong>descriptive&lt;/strong> &amp;mdash; we document cross-country correlations and trends, but do not make causal claims.&lt;/p>
&lt;h3 id="learning-objectives">Learning objectives&lt;/h3>
&lt;ul>
&lt;li>Understand beta-convergence and sigma-convergence and how to test for each&lt;/li>
&lt;li>Track the trend in convergence over time using year-interacted regressions&lt;/li>
&lt;li>Decompose convergence into contributions from income quartiles and geographic regions&lt;/li>
&lt;li>Apply the omitted variable bias (OVB) formula to explain why unconditional convergence emerged&lt;/li>
&lt;li>Distinguish between correlate-income slopes (delta), growth-correlate slopes (lambda), and their product&lt;/li>
&lt;li>Evaluate whether the 1990s growth regression literature holds up as an out-of-sample test&lt;/li>
&lt;/ul>
&lt;h3 id="analytical-roadmap">Analytical roadmap&lt;/h3>
&lt;p>The diagram below shows the logical progression of the tutorial. We first establish the facts, then explain them.&lt;/p>
&lt;pre>&lt;code class="language-mermaid">graph LR
A[&amp;quot;&amp;lt;b&amp;gt;Establish the&amp;lt;br/&amp;gt;Facts&amp;lt;/b&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;i&amp;gt;Sections 3--6&amp;lt;/i&amp;gt;&amp;quot;]
B[&amp;quot;&amp;lt;b&amp;gt;Correlate&amp;lt;br/&amp;gt;Convergence&amp;lt;/b&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;i&amp;gt;Section 7&amp;lt;/i&amp;gt;&amp;quot;]
C[&amp;quot;&amp;lt;b&amp;gt;OVB&amp;lt;br/&amp;gt;Framework&amp;lt;/b&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;i&amp;gt;Sections 8--10&amp;lt;/i&amp;gt;&amp;quot;]
D[&amp;quot;&amp;lt;b&amp;gt;The&amp;lt;br/&amp;gt;Punchline&amp;lt;/b&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;i&amp;gt;Section 11&amp;lt;/i&amp;gt;&amp;quot;]
A --&amp;gt; B
B --&amp;gt; C
C --&amp;gt; D
style A fill:#6a9bcc,stroke:#141413,color:#fff
style B fill:#d97757,stroke:#141413,color:#fff
style C fill:#00d4c8,stroke:#141413,color:#141413
style D fill:#141413,stroke:#d97757,color:#fff
&lt;/code>&lt;/pre>
&lt;p>We start by documenting the emergence of convergence (scatter plots, rolling coefficients, sigma-convergence, quartile decompositions). Then we show that growth correlates have themselves converged. Finally, the OVB framework links these two facts, revealing that the gap between unconditional and conditional convergence closed because growth regression coefficients for policy variables collapsed.&lt;/p>
&lt;hr>
&lt;h2 id="2-setup-and-data-loading">2. Setup and data loading&lt;/h2>
&lt;p>We begin by loading the Kremer et al. (2021) replication dataset, which has already been cleaned to exclude very small countries (population below 200,000) and resource-dependent economies (natural resource rents above 75% of GDP). We also merge regional classifications from the World Development Indicators.&lt;/p>
&lt;pre>&lt;code class="language-stata">clear all
set more off
set seed 42
set scheme s2color
* Load the main dataset
use &amp;quot;https://raw.githubusercontent.com/cmg777/starter-academic-v501/master/content/post/stata_convergence2/main_data.dta&amp;quot;, clear
* Display panel structure
codebook country_id, compact
tab year if loggdp != ., missing
summarize loggdp loggdp_growth_10
&lt;/code>&lt;/pre>
&lt;pre>&lt;code class="language-text">Panel structure:
country_id: 174 unique countries, range 2--218
Years covered: 1960 to 2017
Countries with GDP data: 160
Key income variables:
Variable | Obs Mean Std. dev. Min Max
-----------+---------------------------------------------------------
loggdp | 8,328 8.712741 1.186573 5.368557 12.61823
loggdp_g~10| 6,888 1.962031 2.78512 -12.33628 22.12787
&lt;/code>&lt;/pre>
&lt;p>The dataset is an unbalanced panel of 160 countries observed over 58 years (1960&amp;ndash;2017), with 8,328 country-year observations containing GDP data. The panel expands in two jumps &amp;mdash; from 109 countries in 1960 to 137 in 1970 (decolonization) and to 160 in 1990 (post-Soviet states). Average log GDP per capita is 8.71, with a standard deviation of 1.19 log points reflecting enormous cross-country income inequality. The 10-year forward-looking growth rate &amp;mdash; the main outcome variable &amp;mdash; averages 1.96% per year with a range from -12.3% (economic collapses) to 22.1% (growth miracles).&lt;/p>
&lt;p>We then define variable groups following the paper&amp;rsquo;s classification of growth correlates into four categories.&lt;/p>
&lt;pre>&lt;code class="language-stata">* Solow fundamentals (steady-state determinants)
local solow investment population_growth barrolee2060
* Short-run correlates (policies/institutions that can change quickly)
local short_run polity2 FH_political_rights FH_civil_liberties ///
pri_inv gov_spending inflation WDI_credit credit /* +19 more */
* Long-run correlates (geography and historical institutions)
local long_run population_1900 legor_uk legor_fr logem4 meantemp /* +7 more */
* Culture (Hofstede cultural dimensions)
local culture VSM_power_dist VSM_individualism VSM_masculinity /* +3 more */
&lt;/code>&lt;/pre>
&lt;p>The classification matters because the paper&amp;rsquo;s central finding is that &lt;strong>short-run correlates&lt;/strong> behave very differently from &lt;strong>Solow fundamentals&lt;/strong> in growth regressions. We will return to this distinction in Sections 9 and 10.&lt;/p>
&lt;hr>
&lt;h2 id="3-has-the-world-been-converging-scatter-plots-by-decade">3. Has the world been converging? Scatter plots by decade&lt;/h2>
&lt;p>The simplest test for convergence is visual: plot 10-year economic growth against initial income level and check the slope. &lt;strong>Beta-convergence&lt;/strong> &amp;mdash; named after the slope coefficient $\beta$ in the regression of growth on income &amp;mdash; means that poorer countries grow faster. A negative slope indicates convergence; a positive slope indicates divergence.&lt;/p>
&lt;p>We run this regression for each decade separately, from the 1960s through 2007.&lt;/p>
&lt;pre>&lt;code class="language-stata">foreach yr in 1960 1970 1980 1990 2000 2007 {
quietly reg loggdp_growth_10 loggdp if year == `yr', robust
* Store coefficients for each decade
}
* Combine 6 scatter panels into one figure
graph combine G1 G2 G3 G4 G5 G6, rows(2) cols(3) ///
graphregion(color(white)) ///
title(&amp;quot;Income Convergence by Decade&amp;quot;, size(medium))
graph export &amp;quot;stata_convergence2_scatter_by_decade.png&amp;quot;, replace width(2400)
&lt;/code>&lt;/pre>
&lt;p>&lt;img src="stata_convergence2_scatter_by_decade.png" alt="Six-panel scatter plot showing 10-year growth versus log GDP per capita for each decade from the 1960s through 2007. The fitted slope shifts from positive (divergence) to steeply negative (convergence).">&lt;/p>
&lt;pre>&lt;code class="language-text">Beta by decade:
decade | beta se pval n_obs
--------+----------------------------------------
1960 | 0.532 0.191 0.006 109
1970 | -0.075 0.292 0.799 137
1980 | 0.106 0.246 0.667 137
1990 | -0.127 0.220 0.564 160
2000 | -0.651 0.168 0.000 160
2007 | -0.764 0.146 0.000 160
&lt;/code>&lt;/pre>
&lt;p>The scatter plots reveal a dramatic historical reversal. In the 1960s, $\beta = +0.53$ (p = 0.006), meaning richer countries grew significantly faster &amp;mdash; a world of divergence. Through the 1970s&amp;ndash;1990s, the coefficient hovered near zero, statistically indistinguishable from zero in every decade. By the 2000s, a strongly negative $\beta = -0.65$ (p &amp;lt; 0.001) emerged, deepening to -0.76 by 2007. This shift from divergence to convergence &amp;mdash; spanning roughly 1.3 percentage points of GDP growth per log point of income &amp;mdash; represents a fundamental transformation in the global growth landscape.&lt;/p>
&lt;p>But is this trend systematic, or just an artifact of picking the right decades? The next section tests whether convergence has been &lt;em>trending&lt;/em> continuously.&lt;/p>
&lt;hr>
&lt;h2 id="4-the-trend-in-beta-convergence">4. The trend in beta-convergence&lt;/h2>
&lt;p>Rather than comparing snapshots, we track the convergence coefficient &lt;strong>continuously&lt;/strong> over time. This is the paper&amp;rsquo;s key innovation: studying the &lt;em>trend&lt;/em> in convergence, not just testing whether convergence exists at a single point in time.&lt;/p>
&lt;p>The specification interacts log GDP per capita with year dummies, giving a separate $\beta_t$ for each year:&lt;/p>
&lt;p>$$\text{Growth}_{i,t \to t+10} = \beta_t \cdot \log(\text{GDPpc}_{i,t}) + \mu_t + \varepsilon_{i,t}$$&lt;/p>
&lt;p>In words, this equation says that 10-year forward-looking growth is a linear function of initial income, with a slope $\beta_t$ that varies by year and year fixed effects $\mu_t$ absorbing common shocks. A negative $\beta_t$ means convergence in year $t$; a positive $\beta_t$ means divergence.&lt;/p>
&lt;pre>&lt;code class="language-stata">* Estimate year-by-year beta coefficients using year-interacted regression
areg loggdp_growth_10 c.loggdp#i.year, absorb(year) robust cluster(country_id)
* Extract coefficients and plot with 95% CI
twoway (rarea ci_upper ci_lower year, fcolor(&amp;quot;106 155 204%30&amp;quot;) lwidth(none)) ///
(line beta year, lcolor(&amp;quot;106 155 204&amp;quot;) lwidth(medthick)) ///
(function y = 0, range(1960 2009) lcolor(&amp;quot;217 119 87&amp;quot;) lpattern(dash)), ///
xtitle(&amp;quot;Year&amp;quot;) ytitle(&amp;quot;Beta-convergence coefficient&amp;quot;) ///
title(&amp;quot;Trend in Beta-Convergence, 1960-2007&amp;quot;, size(medium))
graph export &amp;quot;stata_convergence2_beta_trend.png&amp;quot;, replace width(2400)
&lt;/code>&lt;/pre>
&lt;p>&lt;img src="stata_convergence2_beta_trend.png" alt="Rolling beta-convergence coefficient from 1960 to 2008 with 95% confidence interval. The coefficient trends downward from about +0.5 in the 1960s to about -0.8 by 2008, crossing zero around the late 1990s.">&lt;/p>
&lt;p>We also estimate a linear trend specification (Table 1) to test whether the downward movement is statistically significant.&lt;/p>
&lt;pre>&lt;code class="language-text">Table 1: Converging to Convergence
-------------------------------------------------
(1) (2) (3)
Pooled Trend By Decade
-------------------------------------------------
loggdp -0.270** 0.449**
(0.118) (0.224)
loggdp_X~r -0.025***
(0.006)
loggdp~60s 0.532***
(0.191)
loggdp~00s -0.651***
(0.168)
loggdp~07s -0.764***
(0.146)
-------------------------------------------------
N 863 863 863
Year FE Y Y Y
-------------------------------------------------
&lt;/code>&lt;/pre>
&lt;p>The trend coefficient of &lt;strong>-0.025 per year&lt;/strong> (p &amp;lt; 0.01) confirms that convergence has been a systematic trend, not just a snapshot. The convergence coefficient has decreased by 0.025 per year since 1960 &amp;mdash; or equivalently, has shifted by about 1.2 percentage points per half-century. The rolling year-by-year beta (Figure 2) shows this was not smooth: $\beta$ fluctuated around zero through the 1970s&amp;ndash;1980s, then dropped sharply through the 1990s and 2000s, becoming consistently and significantly negative after 1999.&lt;/p>
&lt;p>This raises a natural follow-up question: if countries are growing at rates that should reduce income gaps (beta-convergence), has income dispersion actually &lt;em>narrowed&lt;/em>?&lt;/p>
&lt;hr>
&lt;h2 id="5-sigma-convergence-is-income-dispersion-narrowing">5. Sigma-convergence: is income dispersion narrowing?&lt;/h2>
&lt;p>&lt;strong>Beta-convergence&lt;/strong> (poorer countries growing faster) and &lt;strong>sigma-convergence&lt;/strong> (declining cross-country income dispersion) are related but distinct concepts. Beta-convergence is &lt;em>necessary&lt;/em> but not &lt;em>sufficient&lt;/em> for sigma-convergence &amp;mdash; like a river flowing downhill, catch-up growth must be strong enough to overcome random shocks that push countries apart. We measure sigma as the standard deviation of log GDP per capita across countries in each year.&lt;/p>
&lt;pre>&lt;code class="language-stata">preserve
collapse (sd) sigma = loggdp, by(year)
twoway (line sigma year, lcolor(&amp;quot;106 155 204&amp;quot;) lwidth(medthick)), ///
xtitle(&amp;quot;Year&amp;quot;) ytitle(&amp;quot;SD of log GDP per capita&amp;quot;) ///
title(&amp;quot;Sigma-Convergence: Cross-Country Income Dispersion&amp;quot;, size(medium))
graph export &amp;quot;stata_convergence2_sigma.png&amp;quot;, replace width(2400)
restore
&lt;/code>&lt;/pre>
&lt;p>&lt;img src="stata_convergence2_sigma.png" alt="Standard deviation of log GDP per capita across countries from 1960 to 2017. Sigma rises steadily from about 0.95 in 1960 to a peak of 1.22 around 2000, then declines.">&lt;/p>
&lt;pre>&lt;code class="language-text">Sigma (SD of log GDP per capita):
Year | Sigma
-------+---------
1960 | 0.947
1970 | 1.086
1980 | 1.139
1990 | 1.146
2000 | 1.217 (peak)
2010 | 1.173
2017 | 1.173
&lt;/code>&lt;/pre>
&lt;p>The standard deviation of log GDP per capita rose steadily from 0.95 in 1960 to a peak of 1.22 in 2000, reflecting four decades of widening global inequality. After 2000, sigma began declining, reaching 1.13 by 2015 before ticking back up slightly to 1.17 in 2017. This pattern is consistent with beta-convergence leading sigma-convergence by roughly a decade: beta turned significantly negative around 1999, and sigma began declining shortly after 2000. The lag occurs because sigma-convergence requires catch-up growth fast enough to offset the random shocks that push countries apart &amp;mdash; a more demanding condition than simple beta-convergence.&lt;/p>
&lt;p>Now that we have established the headline fact &amp;mdash; convergence emerged around 2000 &amp;mdash; we need to understand &lt;em>who&lt;/em> is driving it. Is it catch-up growth at the bottom, stagnation at the top, or both?&lt;/p>
&lt;hr>
&lt;h2 id="6-who-drives-convergence">6. Who drives convergence?&lt;/h2>
&lt;h3 id="61-income-quartile-decomposition">6.1 Income quartile decomposition&lt;/h3>
&lt;p>We decompose the convergence trend by sorting countries into income quartiles and tracking each group&amp;rsquo;s average growth rate over time. This reveals whether convergence reflects catch-up growth by the poorest countries, a growth slowdown among the richest, or both.&lt;/p>
&lt;pre>&lt;code class="language-stata">* Compute mean 10-year growth by income quartile and year
xtile quartile = loggdp, nq(4)
collapse (mean) mean_growth = loggdp_growth_10, by(quartile year)
* Plot 4 lines, one per quartile
twoway (line mean_growth year if quartile == 1, lcolor(&amp;quot;255 141 61&amp;quot;)) ///
(line mean_growth year if quartile == 2, lcolor(&amp;quot;246 199 0&amp;quot;)) ///
(line mean_growth year if quartile == 3, lcolor(&amp;quot;146 195 51&amp;quot;)) ///
(line mean_growth year if quartile == 4, lcolor(&amp;quot;106 155 204&amp;quot;)), ///
legend(label(1 &amp;quot;Q1 (Poorest)&amp;quot;) label(2 &amp;quot;Q2&amp;quot;) label(3 &amp;quot;Q3&amp;quot;) label(4 &amp;quot;Q4 (Richest)&amp;quot;))
graph export &amp;quot;stata_convergence2_growth_by_quartile.png&amp;quot;, replace width(2400)
&lt;/code>&lt;/pre>
&lt;p>&lt;img src="stata_convergence2_growth_by_quartile.png" alt="Mean 10-year growth by income quartile over time. The richest quartile shifts from fastest-growing in the 1960s to slowest-growing by 2007, while the poorest quartile accelerates.">&lt;/p>
&lt;pre>&lt;code class="language-text">Mean 10-year growth by quartile:
Q1(Poorest) Q2 Q3 Q4(Richest)
1960 2.46 2.20 2.93 3.49
1985 0.49 0.99 1.46 1.76
2000 3.31 3.60 3.29 1.26
2007 3.02 2.18 1.60 0.31
&lt;/code>&lt;/pre>
&lt;p>Convergence since 2000 is driven by both catch-up growth at the bottom AND a growth slowdown at the top. In the 1960s, the richest quartile (Q4) grew fastest at 3.49% per year, while the poorest (Q1) grew at only 2.46%. By 2007, this ordering had completely reversed: Q1 grew at 3.02% while Q4 grew at just 0.31%. The richest quartile experienced the most dramatic decline, going from the fastest-growing group in the 1960s to the slowest by the 2000s. Think of it like a marathon where the leaders have slowed down while the runners at the back have sped up &amp;mdash; the pack is compressing from both directions.&lt;/p>
&lt;h3 id="62-regional-robustness">6.2 Regional robustness&lt;/h3>
&lt;p>A natural concern is that convergence might be driven by a single region &amp;mdash; perhaps it disappears if we exclude China and the rest of Asia. We check by estimating the rolling beta trend while excluding each major region one at a time.&lt;/p>
&lt;pre>&lt;code class="language-stata">* For each region, estimate beta trend excluding that region
foreach reg in 1 2 3 4 {
areg loggdp_growth_10 c.loggdp#i.year if region_group != `reg', ///
absorb(year) robust cluster(country_id)
* Extract and store coefficients
}
graph export &amp;quot;stata_convergence2_beta_excluding_regions.png&amp;quot;, replace width(2400)
&lt;/code>&lt;/pre>
&lt;p>&lt;img src="stata_convergence2_beta_excluding_regions.png" alt="Rolling beta trend with each of four major regions excluded one at a time. Convergence is robust to excluding any single region.">&lt;/p>
&lt;p>Convergence holds when excluding any single region. Excluding Sub-Saharan Africa makes convergence even stronger ($\beta$ reaches -1.25 by 2000), consistent with Africa&amp;rsquo;s economic difficulties during the 1970s&amp;ndash;1990s dragging the global average toward zero. Excluding Europe/North America yields a somewhat weaker but still clearly negative trend. The finding is genuinely global.&lt;/p>
&lt;p>We have now established the core empirical facts: convergence emerged around 2000, it reflects forces on both ends of the income distribution, and it is not driven by any single region. The next step is to ask &lt;em>why&lt;/em>. The paper&amp;rsquo;s key insight is that the answer lies in the behavior of growth correlates.&lt;/p>
&lt;hr>
&lt;h2 id="7-have-growth-correlates-converged">7. Have growth correlates converged?&lt;/h2>
&lt;p>The 1990s growth literature identified dozens of variables that predict economic growth: investment, education, democracy, governance, financial development, inflation, and many others. A key insight of Kremer et al. (2021) is that these variables are not static &amp;mdash; they have been converging across countries just like income itself.&lt;/p>
&lt;p>We test this by regressing the change in each correlate (from 1985 to 2015) on its initial level in 1985. A negative slope means &lt;strong>correlate convergence&lt;/strong> &amp;mdash; countries that started with worse values experienced the largest improvements.&lt;/p>
&lt;pre>&lt;code class="language-stata">* For each correlate: change = beta * initial_level + epsilon
* Example for Polity 2 (democracy score)
gen change = 100 * ((polity2_2015 - polity2_1985) / 30)
reg change polity2_1985, robust
&lt;/code>&lt;/pre>
&lt;p>&lt;img src="stata_convergence2_correlate_convergence.png" alt="Six-panel scatter showing convergence in six representative growth correlates: population growth, investment, education, democracy, government spending, and financial credit. All six show negative slopes indicating convergence.">&lt;/p>
&lt;pre>&lt;code class="language-text">Correlate beta-convergence (change 1985-2015 regressed on level 1985):
Variable | beta se n_obs pval
-----------------------+------------------------------------
investment | -2.978 0.395 118 0.000
population_growth | -1.530 0.277 172 0.000
polity2 | -2.029 0.168 131 0.000
FH_political_rights | -1.394 0.206 139 0.000
gov_spending | -1.611 0.305 114 0.000
inflation | -3.070 0.103 128 0.000
barrolee2060 | -0.158 0.105 136 0.136
&lt;/code>&lt;/pre>
&lt;p>Growth correlates have themselves been converging since 1985. The strongest convergence is in inflation ($\beta = -3.07$), investment ($\beta = -2.98$), and democracy as measured by Polity 2 ($\beta = -2.03$) &amp;mdash; all significant at the 0.1% level. This means that the cross-country distribution of policies and institutions has been compressing: countries with initially worse institutions experienced the largest improvements. The notable exception is Barro-Lee education ($\beta = -0.16$, p = 0.14), where convergence is slower and not statistically significant.&lt;/p>
&lt;p>This finding is crucial because it connects two previously separate literatures. The convergence literature asks whether poor countries are catching up in &lt;em>income&lt;/em>. The institutions literature documents whether countries are catching up in &lt;em>policies&lt;/em>. The answer to both is yes &amp;mdash; and the next sections show these are not coincidences but are linked by the omitted variable bias formula.&lt;/p>
&lt;hr>
&lt;h2 id="8-the-ovb-framework-why-does-convergence-emerge">8. The OVB framework: why does convergence emerge?&lt;/h2>
&lt;p>This section introduces the central analytical framework of the paper. The &lt;strong>omitted variable bias (OVB) formula&lt;/strong> provides an exact decomposition of the gap between unconditional convergence (a simple comparison of growth and income) and conditional convergence (controlling for institutions). Understanding this decomposition is the key to answering &lt;em>why&lt;/em> unconditional convergence emerged.&lt;/p>
&lt;h3 id="81-three-regressions">8.1 Three regressions&lt;/h3>
&lt;p>Consider any growth correlate &amp;mdash; say, democracy (Polity 2 score). Three regressions define the framework:&lt;/p>
&lt;p>&lt;strong>Regression 1 &amp;mdash; Unconditional convergence ($\beta$):&lt;/strong> Regress growth on income alone.&lt;/p>
&lt;p>$$\text{Growth}_i = \alpha + \beta \cdot \log(\text{GDPpc}_i) + \varepsilon_i$$&lt;/p>
&lt;p>If $\beta &amp;lt; 0$, poorer countries grow faster (convergence). If $\beta &amp;gt; 0$, richer countries grow faster (divergence).&lt;/p>
&lt;p>&lt;strong>Regression 2 &amp;mdash; Conditional convergence ($\beta^{\ast}$):&lt;/strong> Regress growth on income &lt;em>and&lt;/em> the correlate.&lt;/p>
&lt;p>$$\text{Growth}_i = \alpha + \beta^{\ast} \cdot \log(\text{GDPpc}_i) + \lambda \cdot \text{Inst}_i + \varepsilon_i$$&lt;/p>
&lt;p>$\beta^{\ast}$ is the convergence coefficient &lt;em>controlling for&lt;/em> institutions. The coefficient $\lambda$ captures how much the correlate predicts growth, holding income constant. In the 1990s, $\beta^{\ast}$ was typically negative (conditional convergence) even when $\beta$ was not (no unconditional convergence).&lt;/p>
&lt;p>&lt;strong>Regression 3 &amp;mdash; Correlate-income slope ($\delta$):&lt;/strong> Regress the correlate on income.&lt;/p>
&lt;p>$$\text{Inst}_i = \nu + \delta \cdot \log(\text{GDPpc}_i) + u_i$$&lt;/p>
&lt;p>$\delta$ captures how strongly the correlate correlates with income. If $\delta &amp;gt; 0$, richer countries have better institutions &amp;mdash; the &amp;ldquo;modernization hypothesis.&amp;rdquo;&lt;/p>
&lt;h3 id="82-the-key-equation">8.2 The key equation&lt;/h3>
&lt;p>The OVB formula links these three regressions with an exact algebraic identity:&lt;/p>
&lt;p>$$\beta - \beta^{\ast} = \delta \times \lambda$$&lt;/p>
&lt;p>In words, this says that the gap between unconditional and conditional convergence equals the product of two things: (1) how much richer countries have better institutions ($\delta$), and (2) how much those institutions predict growth ($\lambda$). This is not an approximation &amp;mdash; it is an algebraic identity that holds exactly in any linear regression.&lt;/p>
&lt;p>&lt;strong>Why this matters.&lt;/strong> The decomposition tells us there are exactly three ways unconditional convergence can change over time:&lt;/p>
&lt;ol>
&lt;li>&lt;strong>Conditional convergence itself changes&lt;/strong> ($\beta^{\ast}$ shifts) &amp;mdash; e.g., technology diffusion accelerates&lt;/li>
&lt;li>&lt;strong>Correlate-income slopes change&lt;/strong> ($\delta$ shifts) &amp;mdash; e.g., rich and poor countries become equally democratic&lt;/li>
&lt;li>&lt;strong>Growth regression coefficients change&lt;/strong> ($\lambda$ shifts) &amp;mdash; e.g., democracy stops predicting growth&lt;/li>
&lt;/ol>
&lt;p>The paper&amp;rsquo;s central finding: it is mainly &lt;strong>mechanism 3&lt;/strong> &amp;mdash; $\lambda$ flattened &amp;mdash; that explains the emergence of unconditional convergence.&lt;/p>
&lt;h3 id="83-worked-example-democracy-polity-2">8.3 Worked example: democracy (Polity 2)&lt;/h3>
&lt;p>Before generalizing, we build intuition with one correlate. Polity 2 measures democracy on a scale from -10 (autocracy) to +10 (full democracy), normalized by its 1985 standard deviation so that coefficients are in comparable units.&lt;/p>
&lt;pre>&lt;code class="language-stata">* Normalize polity2 by its 1985 SD
gen polity2_norm = polity2 / `sd_polity2'
* --- Period: 1985 ---
* Regression 1 (Unconditional):
reg loggdp_growth_10 loggdp if year == 1985 &amp;amp; polity2_norm != ., robust
* Regression 2 (Conditional):
reg loggdp_growth_10 loggdp polity2_norm if year == 1985, robust
* Regression 3 (Income-Institution slope):
reg polity2_norm loggdp if year == 1985, robust
* Repeat for 2005
&lt;/code>&lt;/pre>
&lt;pre>&lt;code class="language-text">---- Period: 1985 ----
Regression 1 (Unconditional): beta = 0.328 (SE = 0.199, N = 124)
Regression 2 (Conditional): beta* = -0.111, lambda = 0.891
Regression 3 (Income-Inst): delta = 0.494
OVB DECOMPOSITION:
beta - beta* = 0.440 (actual gap)
delta x lambda = 0.440 (predicted by OVB formula)
delta = 0.494 (richer countries more democratic?)
lambda = 0.891 (democracy predicts growth?)
---- Period: 2005 ----
Regression 1 (Unconditional): beta = -0.767 (SE = 0.149, N = 147)
Regression 2 (Conditional): beta* = -0.807, lambda = 0.183
Regression 3 (Income-Inst): delta = 0.216
OVB DECOMPOSITION:
beta - beta* = 0.040 (actual gap)
delta x lambda = 0.040 (predicted by OVB formula)
delta = 0.216 (richer countries more democratic?)
lambda = 0.183 (democracy predicts growth?)
COMPARISON ACROSS TIME:
delta (1985) = 0.494 --&amp;gt; delta (2005) = 0.216 [STABLE]
lambda (1985) = 0.891 --&amp;gt; lambda (2005) = 0.183 [SHRANK]
gap (1985) = 0.440 --&amp;gt; gap (2005) = 0.040 [CLOSED]
&lt;/code>&lt;/pre>
&lt;p>This single example encapsulates the paper&amp;rsquo;s entire argument. In 1985, unconditional $\beta$ was +0.33 (divergence), but controlling for democracy revealed conditional convergence at $\beta^{\ast} = -0.11$. The gap of 0.44 is exactly predicted by $\delta \times \lambda = 0.494 \times 0.891 = 0.44$ &amp;mdash; the OVB formula holds exactly because it is an algebraic identity. By 2005, $\lambda$ collapsed from 0.89 to 0.18 &amp;mdash; democracy went from being a powerful growth predictor (one SD higher Polity 2 associated with 0.89% faster annual growth) to a near-zero predictor. The resulting gap shrank from 0.44 to 0.04 &amp;mdash; a &lt;strong>91% reduction&lt;/strong>. The correlate-income slope $\delta$ also fell (from 0.49 to 0.22), but the primary driver was the collapse in $\lambda$.&lt;/p>
&lt;p>Think of it like a recipe that calls for two ingredients. The gap ($\delta \times \lambda$) was large in 1985 because both ingredients were present: richer countries had much better democracy ($\delta$ large) &lt;em>and&lt;/em> democracy strongly predicted growth ($\lambda$ large). By 2005, the second ingredient ($\lambda$) had nearly vanished &amp;mdash; it no longer mattered for growth predictions whether a country was democratic or not &amp;mdash; so the recipe produced almost nothing.&lt;/p>
&lt;p>Now we generalize: does this pattern hold across &lt;em>all&lt;/em> growth correlates, not just democracy?&lt;/p>
&lt;hr>
&lt;h2 id="9-are-correlate-income-slopes-stable-delta">9. Are correlate-income slopes stable? (Delta)&lt;/h2>
&lt;p>The OVB formula has two components: $\delta$ (the correlate-income slope) and $\lambda$ (the growth-correlate slope). We examine each in turn. If $\delta$ &amp;mdash; the relationship between income and institutions &amp;mdash; has changed dramatically, that could explain the closing gap. But the paper finds that $\delta$ has been remarkably stable.&lt;/p>
&lt;p>For each correlate, we compute $\delta$ in 1985 and in 2015, then scatter one against the other. Points on the 45-degree line mean $\delta$ has not changed; points below it mean the relationship weakened.&lt;/p>
&lt;pre>&lt;code class="language-stata">* For each correlate: regress Inst on loggdp in 1985 and 2015
* All correlates normalized by their 1985 SD
* Panel A: Solow fundamentals + short-run correlates
* Panel B: Long-run correlates + culture
graph combine delta_A delta_B, rows(1) cols(2) ///
graphregion(color(white)) ///
title(&amp;quot;Stability of Correlate-Income Slopes&amp;quot;, size(medium))
graph export &amp;quot;stata_convergence2_delta_stability.png&amp;quot;, replace width(2400)
&lt;/code>&lt;/pre>
&lt;p>&lt;img src="stata_convergence2_delta_stability.png" alt="Two-panel scatter of correlate-income slopes (delta) in 2015 versus 1985. Points cluster tightly along the 45-degree line for all variable groups.">&lt;/p>
&lt;pre>&lt;code class="language-text">Delta fitted line slopes (delta_2015 vs delta_1985):
Solow fundamentals: slope = 0.878
Short-Run correlates: slope = 0.886
Long-Run correlates: slope = 1.024
Culture: slope = 0.884
&lt;/code>&lt;/pre>
&lt;p>The correlate-income relationships are remarkably stable. Fitted lines cluster tightly around the 45-degree line: Solow fundamentals 0.88, short-run correlates 0.89, long-run correlates 1.02, culture 0.88. This means the cross-country association between income and institutions has barely changed over 30 years. Richer countries still have better democracy, more investment, lower population growth, and stronger financial sectors in essentially the same proportions as in 1985. The &amp;ldquo;modernization hypothesis&amp;rdquo; &amp;mdash; that economic development goes hand-in-hand with institutional improvement &amp;mdash; passes its out-of-sample test.&lt;/p>
&lt;p>Crucially, this stability means that the $\delta$ component is &lt;strong>not&lt;/strong> responsible for the closing gap between unconditional and conditional convergence. The answer must lie in the other component: $\lambda$.&lt;/p>
&lt;hr>
&lt;h2 id="10-growth-regressions-then-vs-now-the-lambda-flattening">10. Growth regressions then vs. now: the lambda flattening&lt;/h2>
&lt;p>In the 1990s, a massive literature ran growth regressions of the form: Growth = $\alpha + \beta^{\ast} \times$ Income $+ \lambda \times$ Correlate $+ \varepsilon$. These regressions identified which policies and institutions predict growth and formed the empirical backbone of the &amp;ldquo;Washington Consensus&amp;rdquo; &amp;mdash; the set of policy recommendations that international institutions gave to developing countries. The key question: &lt;strong>do these regressions hold up with 25 years of new data?&lt;/strong>&lt;/p>
&lt;p>For each correlate, we estimate $\lambda$ (the growth-correlate slope) in the base year (~1985) and in 2005, using a fixed sample of countries with data in both periods.&lt;/p>
&lt;pre>&lt;code class="language-stata">* For each correlate, run the growth regression in base year and 2005
* Growth = alpha + beta* x loggdp + lambda x correlate + epsilon
* Fixed country sample per correlate
* Scatter lambda_2005 vs lambda_1985
reg lambda_2005 lambda_1985 if flag_solow == 1
* -&amp;gt; slope = 0.861, R-sq = 0.947
reg lambda_2005 lambda_1985 if flag_solow == 0 &amp;amp; flag_long_run == 0
* -&amp;gt; slope = 0.189, R-sq = 0.063
&lt;/code>&lt;/pre>
&lt;p>&lt;img src="stata_convergence2_lambda_flattening.png" alt="Two-panel scatter of growth regression coefficients (lambda) in 2005 versus 1985. Solow fundamentals cluster near the 45-degree line; short-run correlates are scattered near zero.">&lt;/p>
&lt;pre>&lt;code class="language-text">Lambda fitted line slopes (lambda_2005 vs lambda_1985):
Solow fundamentals: slope = 0.861, R-sq = 0.947
Short-run correlates: slope = 0.189, R-sq = 0.063
Long-Run correlates: slope = 0.296
Culture: slope = 0.685
&lt;/code>&lt;/pre>
&lt;p>This is the most striking empirical result of the paper. &lt;strong>Solow fundamentals&lt;/strong> (investment, population growth, education) show high persistence: a fitted slope of 0.86 with R-squared of 0.95, meaning these deep structural variables predict growth almost as well in 2005 as in 1985. In dramatic contrast, &lt;strong>short-run correlates&lt;/strong> (democracy, governance, fiscal policy, financial development) show near-zero persistence: a slope of 0.19 with R-squared of only 0.06. There is essentially no correlation between which policy variables predicted growth in 1985 and which predict growth in 2005.&lt;/p>
&lt;p>The Washington Consensus growth regressions &amp;mdash; which identified specific policies and institutions as growth drivers &amp;mdash; have &lt;strong>failed their out-of-sample test&lt;/strong>. Variables like Polity 2 ($\lambda$ fell from 0.89 to 0.34), FH Political Rights (1.11 to 0.19), and FH Civil Liberties (0.96 to 0.17) went from strong growth predictors to near-zero predictors. Long-run correlates and culture occupy an intermediate position (slopes 0.30 and 0.69 respectively).&lt;/p>
&lt;p>Why did this happen? There are at least three possible explanations: (a) as correlates converged (Section 7), the reduced cross-country variation made coefficient estimation noisier; (b) the original regressions may have been overfitted to a specific historical sample; (c) the relationship between institutions and growth may be non-linear &amp;mdash; institutions matter most when differences are large, and less when all countries have reasonably good policies. The analysis cannot distinguish between these, but the empirical fact is clear: $\lambda$ collapsed.&lt;/p>
&lt;p>Since $\delta$ is stable (Section 9) and $\lambda$ collapsed (this section), their product $\delta \times \lambda$ must have shrunk toward zero. The next section confirms this.&lt;/p>
&lt;hr>
&lt;h2 id="11-the-punchline-absolute-convergence-converges-to-conditional">11. The punchline: absolute convergence converges to conditional&lt;/h2>
&lt;h3 id="111-the-ovb-gap-is-closing">11.1 The OVB gap is closing&lt;/h3>
&lt;p>The product $\delta \times \lambda$ quantifies how much each correlate biases the unconditional convergence coefficient. We scatter $\delta \times \lambda$ in 2005 against its value in 1985 to see whether this &amp;ldquo;explanatory gap&amp;rdquo; has closed.&lt;/p>
&lt;pre>&lt;code class="language-stata">* Scatter delta*lambda in 2005 vs 1985
reg dl_2005 dl_1985 if flag_solow == 0 &amp;amp; flag_long_run == 0
* -&amp;gt; slope = 0.090 (short-run correlates: gap essentially vanished)
reg dl_2005 dl_1985 if flag_solow == 1
* -&amp;gt; slope = 0.740 (Solow fundamentals: gap partially retained)
&lt;/code>&lt;/pre>
&lt;p>&lt;img src="stata_convergence2_ovb_gap.png" alt="Two-panel scatter of delta times lambda products in 2005 versus 1985. Short-run correlate products have collapsed to near zero.">&lt;/p>
&lt;pre>&lt;code class="language-text">OVB gap fitted line slopes (dl_2005 vs dl_1985):
Panel A:
Solow fundamentals: slope = 0.740
Short-Run correlates: slope = 0.090
Panel B:
Long-Run correlates: slope = 0.480
Culture: slope = 0.739
&lt;/code>&lt;/pre>
&lt;p>The OVB gap for short-run correlates has shrunk to nearly zero (fitted slope 0.09). In 1985, omitting these policy and institutional variables made unconditional convergence look substantially worse than conditional convergence. By 2005, the two are nearly identical. Solow fundamentals retained more of their explanatory power (slope 0.74), reflecting the stability of both their $\delta$ and $\lambda$ components. This confirms the paper&amp;rsquo;s central thesis: unconditional convergence emerged not because the income-correlate relationship changed ($\delta$ is stable) but because policy variables stopped predicting growth ($\lambda$ flattened).&lt;/p>
&lt;h3 id="112-the-closing-gap-over-time">11.2 The closing gap over time&lt;/h3>
&lt;p>The definitive test uses multivariate regressions. We fix a sample of 73 countries with complete data on 10 correlates (Polity 2, FH political rights, FH civil liberties, private investment, government spending, inflation, WDI credit, credit by financial sector, Barro-Lee education, and education gender gap). For each year from 1985 to 2007, we estimate both unconditional $\beta$ (income only) and conditional $\beta^{\ast}$ (income plus all 10 correlates).&lt;/p>
&lt;pre>&lt;code class="language-stata">* Fix sample: 73 countries with complete data on all 10 correlates in 1985
local var_all polity2 FH_political_rights FH_civil_liberties pri_inv ///
gov_spending inflation WDI_credit credit barrolee2060 edugap
forval yr = 1985/2007 {
* Unconditional: reg growth loggdp, robust cluster(country_id)
* Conditional: reg growth loggdp `var_all', robust cluster(country_id)
}
* Plot the closing gap
twoway (line beta_unconditional year, lcolor(&amp;quot;20 20 19&amp;quot;) lwidth(medthick)) ///
(line beta_conditional year, lcolor(&amp;quot;106 155 204&amp;quot;) lwidth(medthick)) ///
(line zero year, lcolor(&amp;quot;217 119 87&amp;quot;) lpattern(dot)), ///
legend(label(1 &amp;quot;Absolute Convergence&amp;quot;) label(2 &amp;quot;Conditional Convergence&amp;quot;))
graph export &amp;quot;stata_convergence2_absolute_vs_conditional.png&amp;quot;, replace width(2400)
&lt;/code>&lt;/pre>
&lt;p>&lt;img src="stata_convergence2_absolute_vs_conditional.png" alt="Time series of unconditional beta and conditional beta-star from 1985 to 2007. The two lines converge as unconditional beta falls from +0.42 to -0.65 while conditional beta-star fluctuates around -0.5 to -1.3.">&lt;/p>
&lt;pre>&lt;code class="language-text">Year | beta_unconditional beta_conditional gap
------+-------------------------------------------
1985 | 0.420 -1.072 1.492
1990 | 0.377 -0.560 0.937
1995 | 0.081 -0.155 0.236
2000 | -0.387 -0.540 0.153
2005 | -0.556 -0.969 0.413
2007 | -0.646 -1.274 0.629
&lt;/code>&lt;/pre>
&lt;p>This is the paper&amp;rsquo;s title finding. In 1985, unconditional $\beta$ was +0.42 (divergence) while conditional $\beta^{\ast}$ was -1.07 (strong convergence when controlling for institutions) &amp;mdash; a gap of 1.49. By 2000, unconditional $\beta$ had fallen to -0.39 while conditional $\beta^{\ast}$ was -0.54, narrowing the gap to just 0.15. The gap narrowed dramatically from 1.49 (1985) to 0.15 (2000), then widened somewhat as conditional $\beta^{\ast}$ deepened faster, but both lines are firmly negative by 2000.&lt;/p>
&lt;p>The Solow model&amp;rsquo;s prediction of conditional convergence held all along &amp;mdash; what changed is that the real world caught up. As the OVB from excluding correlates shrank toward zero, unconditional convergence &amp;ldquo;converged to&amp;rdquo; conditional convergence.&lt;/p>
&lt;h3 id="113-multivariate-evidence-table-5">11.3 Multivariate evidence (Table 5)&lt;/h3>
&lt;p>The multivariate regressions crystallize the structural change by showing how adding correlates affects the convergence coefficient in each period.&lt;/p>
&lt;pre>&lt;code class="language-text"> abs_1985 solow_1985 short_1985 full_1985 abs_2005 solow_2005 short_2005 full_2005
loggdp 0.420 -0.447 -0.435 -0.816 -0.556 -1.176 -0.557 -1.040
(0.252) (0.661) (0.457) (0.619) (0.203) (0.309) (0.327) (0.393)
R2 0.028 0.155 0.152 0.228 0.101 0.247 0.258 0.355
N 73 73 73 73 73 73 73 73
&lt;/code>&lt;/pre>
&lt;p>In 1985, absolute convergence alone gives $\beta = +0.42$ (divergence, R-squared = 0.03 &amp;mdash; essentially no linear relationship). Adding Solow fundamentals flips the sign to $\beta^{\ast} = -0.45$, and the full model gives $\beta^{\ast} = -0.82$. In 2005, the picture changes fundamentally: absolute convergence is already strong at $\beta = -0.56$ (R-squared = 0.10). Adding short-run correlates alone barely changes the coefficient (from -0.56 to -0.56), confirming that policy variables no longer have explanatory power beyond what income already captures. Correlates still improve overall fit (R-squared rises from 0.10 to 0.35), but they no longer alter the convergence coefficient.&lt;/p>
&lt;hr>
&lt;h2 id="12-robustness-does-the-averaging-period-matter">12. Robustness: does the averaging period matter?&lt;/h2>
&lt;p>The main results use 10-year forward-looking growth rates. One concern is that 10-year averaging may smooth out noise in a way that creates artificial trends. We check by re-estimating the rolling beta-convergence trend using 1-year, 2-year, 5-year, and 10-year growth averages.&lt;/p>
&lt;pre>&lt;code class="language-stata">* For each averaging period t = 1, 2, 5, 10:
gen loggdp_growth_t = 100 * ((F[t].logrgdpna - logrgdpna) / t)
areg loggdp_growth_t c.loggdp#i.year, absorb(year) robust cluster(country_id)
&lt;/code>&lt;/pre>
&lt;p>&lt;img src="stata_convergence2_robustness_averaging.png" alt="Four-panel comparison of beta trends using 1-, 2-, 5-, and 10-year growth averages. All four panels show the same downward trend; shorter averages are noisier.">&lt;/p>
&lt;pre>&lt;code class="language-text">Results:
1-year average: high noise, downward trend visible but obscured by fluctuations
2-year average: moderate noise, downward trend clearer
5-year average: smooth, clear downward trend from ~0 to ~-0.5 by late 2000s
10-year average: smoothest, clearest trend from +0.5 to -0.76 by 2007
&lt;/code>&lt;/pre>
&lt;p>The convergence trend is robust across all averaging periods. As expected, shorter periods produce noisier estimates &amp;mdash; the 1-year panel is dominated by year-to-year fluctuations &amp;mdash; while longer averages yield smoother trends. All four specifications agree that the crossover from divergence to convergence occurs around 1990&amp;ndash;2000, confirming that the finding is not an artifact of the 10-year growth rate choice.&lt;/p>
&lt;hr>
&lt;h2 id="13-discussion">13. Discussion&lt;/h2>
&lt;p>Let us return to the question posed in the Overview: &lt;strong>why did unconditional convergence emerge since 2000?&lt;/strong>&lt;/p>
&lt;p>The OVB framework provides a clear and quantitative answer. The gap between unconditional convergence ($\beta$) and conditional convergence ($\beta^{\ast}$) is exactly equal to the product $\delta \times \lambda$. This gap closed because $\lambda$ &amp;mdash; the coefficient on growth correlates in growth regressions &amp;mdash; collapsed for short-run policy and institutional variables (slope = 0.19, R-squared = 0.06). Meanwhile, $\delta$ &amp;mdash; the relationship between income and institutions &amp;mdash; remained remarkably stable (slopes around 0.88 on the 45-degree line). In concrete terms: richer countries still have better institutions in the same proportions as 30 years ago, but those institutional advantages no longer translate into faster growth. As a result, unconditional convergence caught up to conditional convergence.&lt;/p>
&lt;p>This has important implications for how we think about economic development. The 1990s &amp;ldquo;Washington Consensus&amp;rdquo; was built on the empirical finding that good policies and institutions predict faster growth. Our out-of-sample test shows that many of these relationships did not persist into the 2000s &amp;mdash; at least not for short-run policy variables. Solow fundamentals (investment, population growth, education) remained robust growth predictors, consistent with the Solow model&amp;rsquo;s enduring relevance. But governance indices, fiscal indicators, and financial variables that were &amp;ldquo;significant&amp;rdquo; in 1990s regressions no longer predict growth. This raises questions about the stability of policy advice based on cross-country growth regressions.&lt;/p>
&lt;p>&lt;strong>Caveats.&lt;/strong> Several important limitations apply. First, the analysis is entirely descriptive &amp;mdash; cross-country regressions do not establish causal relationships. The flattening of $\lambda$ could reflect genuine changes in causal relationships, convergence in unobserved variables, or reduced cross-country variation making coefficient estimation noisier. Second, the panel is unbalanced (109 countries in 1960 vs. 160 by 1990), and sample composition changes could mechanically affect estimates. Third, some correlates have small samples (fewer than 60 observations), limiting statistical precision. Finally, the 10-year growth variable is forward-looking, so the last usable observation is 2007/2008, missing the Global Financial Crisis, the post-GFC recovery, and COVID-19. Whether convergence persisted through these shocks is an open question.&lt;/p>
&lt;hr>
&lt;h2 id="14-summary-and-key-takeaways">14. Summary and key takeaways&lt;/h2>
&lt;p>This tutorial reproduced the key findings of Kremer, Willis, and You (2021), documenting the emergence of unconditional convergence and explaining it through the OVB decomposition framework. The analysis used 160 countries over 58 years with 50+ growth correlates.&lt;/p>
&lt;h3 id="the-story-in-four-facts">The story in four facts&lt;/h3>
&lt;ol>
&lt;li>
&lt;p>&lt;strong>Unconditional convergence emerged around 2000.&lt;/strong> The $\beta$-convergence coefficient shifted from +0.53 in the 1960s (divergence, p = 0.006) to -0.76 by 2007 (convergence, p &amp;lt; 0.001), with a systematic trend of -0.025 per year.&lt;/p>
&lt;/li>
&lt;li>
&lt;p>&lt;strong>Growth correlates converged.&lt;/strong> Inflation ($\beta = -3.07$), investment ($\beta = -2.98$), and democracy ($\beta = -2.03$) all showed strong convergence. Countries with initially worse institutions experienced the largest improvements.&lt;/p>
&lt;/li>
&lt;li>
&lt;p>&lt;strong>Growth regression coefficients collapsed for policy variables.&lt;/strong> Solow fundamentals maintained high stability ($\lambda$ slope = 0.86, R-squared = 0.95), but short-run correlates showed near-zero persistence ($\lambda$ slope = 0.19, R-squared = 0.06). The 1990s growth regressions failed their out-of-sample test.&lt;/p>
&lt;/li>
&lt;li>
&lt;p>&lt;strong>The gap between absolute and conditional convergence closed.&lt;/strong> The Polity 2 worked example shows the gap fell from 0.44 to 0.04 (a 91% reduction). In the multivariate analysis, the gap narrowed from 1.49 (1985) to 0.15 (2000).&lt;/p>
&lt;/li>
&lt;/ol>
&lt;h3 id="limitations">Limitations&lt;/h3>
&lt;ul>
&lt;li>&lt;strong>Descriptive, not causal:&lt;/strong> The OVB framework decomposes observed correlations, not causal relationships&lt;/li>
&lt;li>&lt;strong>Pre-2008 endpoint:&lt;/strong> The analysis does not cover the Global Financial Crisis or COVID-19&lt;/li>
&lt;li>&lt;strong>Small samples for some correlates:&lt;/strong> Culture and tariff variables have fewer than 60 observations&lt;/li>
&lt;li>&lt;strong>Normalization sensitivity:&lt;/strong> All correlate coefficients are normalized by their 1985 standard deviation&lt;/li>
&lt;/ul>
&lt;h3 id="next-steps">Next steps&lt;/h3>
&lt;ul>
&lt;li>Extend the analysis through the 2010s using updated PWT data to test whether convergence survived the post-GFC period&lt;/li>
&lt;li>Explore non-linear specifications to test whether $\lambda$ flattened because of reduced correlate variation&lt;/li>
&lt;li>Apply the OVB decomposition to regional subsamples (e.g., does the mechanism differ for Sub-Saharan Africa vs. East Asia?)&lt;/li>
&lt;/ul>
&lt;hr>
&lt;h2 id="15-exercises">15. Exercises&lt;/h2>
&lt;ol>
&lt;li>
&lt;p>&lt;strong>Your own worked example.&lt;/strong> Choose a different correlate from the dataset (e.g., investment or FH political rights) and replicate the OVB worked example from Section 8.3. Compute $\beta$, $\beta^{\ast}$, $\delta$, $\lambda$, and verify the identity $\beta - \beta^{\ast} = \delta \times \lambda$ for both 1985 and 2005. Did the gap close for your chosen variable? Was the primary driver the change in $\delta$ or $\lambda$?&lt;/p>
&lt;/li>
&lt;li>
&lt;p>&lt;strong>Balanced panel sensitivity.&lt;/strong> Re-estimate the rolling beta-convergence trend (Section 4) using only countries that have GDP data from 1960 onward (a balanced panel of approximately 109 countries). Does the convergence trend look different when you exclude countries that enter the sample later? What does this tell you about the role of sample composition changes?&lt;/p>
&lt;/li>
&lt;li>
&lt;p>&lt;strong>Alternative classification.&lt;/strong> The paper classifies variables as &amp;ldquo;Solow fundamentals&amp;rdquo; or &amp;ldquo;short-run correlates.&amp;rdquo; Move education (barrolee2060) from the Solow group to the short-run group and re-estimate the lambda stability scatters (Section 10). Does the Solow fitted line slope change substantially? What does this tell you about the robustness of the paper&amp;rsquo;s classification scheme?&lt;/p>
&lt;/li>
&lt;/ol>
&lt;hr>
&lt;h2 id="references">References&lt;/h2>
&lt;ol>
&lt;li>&lt;a href="https://www.nber.org/papers/w29484" target="_blank" rel="noopener">Kremer, M., Willis, J., &amp;amp; You, Y. (2021). Converging to Convergence. &lt;em>NBER Working Paper 29484&lt;/em>&lt;/a>&lt;/li>
&lt;li>&lt;a href="https://doi.org/10.2307/2937943" target="_blank" rel="noopener">Barro, R. (1991). Economic Growth in a Cross Section of Countries. &lt;em>Quarterly Journal of Economics&lt;/em>, 106(2), 407&amp;ndash;443&lt;/a>&lt;/li>
&lt;li>&lt;a href="https://doi.org/10.1086/261816" target="_blank" rel="noopener">Barro, R. &amp;amp; Sala-i-Martin, X. (1992). Convergence. &lt;em>Journal of Political Economy&lt;/em>, 100(2), 223&amp;ndash;251&lt;/a>&lt;/li>
&lt;li>&lt;a href="https://doi.org/10.1016/j.jdeveco.2021.102687" target="_blank" rel="noopener">Patel, D., Sandefur, J., &amp;amp; Subramanian, A. (2021). The New Era of Unconditional Convergence. &lt;em>Journal of Development Economics&lt;/em>, 152, 102687&lt;/a>&lt;/li>
&lt;li>&lt;a href="https://doi.org/10.1016/S1574-0684%2805%2901008-7" target="_blank" rel="noopener">Durlauf, S., Johnson, P., &amp;amp; Temple, J. (2005). Growth Econometrics. &lt;em>Handbook of Economic Growth&lt;/em>, Volume 1A&lt;/a>&lt;/li>
&lt;li>&lt;a href="https://www.rug.nl/ggdc/productivity/pwt/" target="_blank" rel="noopener">Penn World Table 10.0 &amp;mdash; Groningen Growth and Development Centre&lt;/a>&lt;/li>
&lt;/ol>
&lt;h3 id="acknowledgements">Acknowledgements&lt;/h3>
&lt;p>AI tools (Claude Code) were used to make the contents of this post more accessible to students. Nevertheless, the content in this post may still have errors. Caution is needed when applying the contents of this post to true research projects.&lt;/p></description></item></channel></rss>