Skip to content

Commit 6a17f81

Browse files
Tom's July 25 edits of growth evidence lecture
1 parent 30780da commit 6a17f81

File tree

2 files changed

+40
-8
lines changed

2 files changed

+40
-8
lines changed
Loading

lectures/long_run_growth.md

Lines changed: 40 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,20 +15,39 @@ kernelspec:
1515

1616
## Overview
1717

18-
Adam Tooze's account of the geopolitical precedents and antecedents of World War I includes a comparison of how Gross National Products of European Great Powers had evolved during the 70 years preceding 1914 (see chapter 1 of {cite}`Tooze_2014`).
18+
In this lecture we use Python, Pandas, and Matplotlib to download, organize, and visualize historical data on GDP growth.
1919

20-
```{figure} _static/lecture_specific/long_run_growth/rgdp-2011-y1820to1945-leadingeconomies.png
20+
In addition to learning how to deploy these tools more generally, we'll use them to describe facts about economic growth experiences across many countries over several centuries.
21+
22+
Such "growth facts" are interesting for a variety of reasons.
23+
24+
Explaining them is a principal purpose of both "development economics" and "economic history".
25+
26+
And the growth facts are important inputs into historians' studies of geopolitical forces and dynamics.
27+
28+
29+
Thus, Adam Tooze's account of the geopolitical precedents and antecedents of World War I begins with a comparison of how Gross National Products of European Great Powers had evolved during the 70 years preceding 1914 (see chapter 1 of {cite}`Tooze_2014`).
30+
31+
Using the very same data that Tooze used to construct his figure, here is our version of his chapter 1 figure.
32+
33+
34+
```{figure} _static/lecture_specific/long_run_growth/tooze_ch1_graph.png
2135
:width: 75%
2236
```
2337

24-
We construct a version of Tooze's graph later in this lecture.
38+
(This is just a copy of our figure {numref}`gdp1`. We desribe how we constructed it later in this lecture.)
39+
40+
Chapter 1 of {cite}`Tooze_2014` used his graph to show how US GDP started the 19th century way behind the GDP of the British Empire.
2541

26-
(An impatient reader can jump ahead and look at figure {numref}`gdp1`.)
42+
By the end of the nineteenth century, US GDP had caught up with GDP of the British Empire, and how during the first half of the 20th century,
43+
US GDP surpassed that of the British Empire.
2744

28-
Looking at his graph and how it set the geopolitical stage for "the American (20th) century" naturally
45+
For Adam Tooze, that fact was a key geopolitical underpinning for the "American century".
46+
47+
Looking at this graph and how it set the geopolitical stage for "the American (20th) century" naturally
2948
tempts one to want a counterpart to his graph for 2014 or later.
3049

31-
(An impatient reader might now want to jump ahead and look at figure {numref}`gdp2`.)
50+
(An impatient reader seeking a hint at the answer might now want to jump ahead and look at figure {numref}`gdp2`.)
3251

3352
As we'll see, reasoning by analogy, this graph perhaps set the stage for an "XXX (21st) century", where you are free to fill in your guess for country XXX.
3453

@@ -460,15 +479,16 @@ ax = draw_interp_plots(gdp[cntry].loc[start_year:end_year],
460479
```
461480

462481
## Constructing a plot similar to Tooze's
482+
In this section we describe how we have constructed a version of the striking figure from chapter 1 of {cite}`Tooze_2014` that we discussed at the start of this lecture.
463483

464-
Let's first define a collection of countries that consist of the British Empire (BEM) so we can replicate that element of Tooze's chart.
484+
Let's first define a collection of countries that consist of the British Empire (BEM) so we can replicate that series in Tooze's chart.
465485

466486
```{code-cell} ipython3
467487
BEM = ['GBR', 'IND', 'AUS', 'NZL', 'CAN', 'ZAF']
468488
gdp['BEM'] = gdp[BEM].loc[start_year-1:end_year].interpolate(method='index').sum(axis=1) # Interpolate incomplete time-series
469489
```
470490

471-
Let's take a look at the aggregation that represents the British Empire
491+
Let's take a look at the aggregation that represents the British Empire.
472492

473493
```{code-cell} ipython3
474494
gdp['BEM'].plot() # The first year is np.nan due to interpolation
@@ -478,6 +498,9 @@ gdp['BEM'].plot() # The first year is np.nan due to interpolation
478498
code_to_name
479499
```
480500

501+
Now let's assemble our series and get ready to plot them.
502+
503+
481504
```{code-cell} ipython3
482505
# Define colour mapping and name for BEM
483506
color_mapping['BEM'] = color_mapping['GBR'] # Set the color to be the same as Great Britain
@@ -499,6 +522,13 @@ plt.savefig("./_static/lecture_specific/long_run_growth/rgdp-2011-y1820to1945-le
499522
plt.show()
500523
```
501524

525+
At the start of this lecture, we noted how US GDP came from "nowhere" at the start of the 19th century to rival and then overtake the GDP of the British Empire
526+
by the end of the 19th century, setting the geopolitical stage for the "American (twentieth) century".
527+
528+
Let's move forward in time and start roughly where Tooze's graph stopped after World War II.
529+
530+
In the spirit of Tooze's chapter 1 analysis, doing this will provide some information about geopolitical realities today.
531+
502532
### The modern era (1950 to 2020)
503533

504534
The following graph displays how quickly China has grown, especially since the late 1970s.
@@ -519,6 +549,8 @@ ax = draw_interp_plots(gdp[cntry].loc[start_year:end_year],
519549
color_mapping, code_to_name, 2, False, ax)
520550
```
521551

552+
553+
522554
It is tempting to compare this graph with figure {numref}`gdp1` that showed the US overtaking the UK near the start of the "American Century", a version of the graph featured in chapter 1 of {cite}`Tooze_2014`.
523555

524556
## Regional analysis

0 commit comments

Comments
 (0)