Skip to content

Commit 0d5e598

Browse files
committed
update changes requested
1 parent df79fd5 commit 0d5e598

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

lectures/long_run_growth.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Using the very same data that Tooze used to construct his figure (with a slightl
3232

3333

3434
```{figure} _static/lecture_specific/long_run_growth/tooze_ch1_graph.png
35-
:width: 80%
35+
:width: 100%
3636
```
3737

3838
(This is just a copy of our figure {numref}`gdp1`. We describe how we constructed it later in this lecture.)
@@ -125,7 +125,7 @@ code_to_name = data[
125125
['countrycode', 'country']].drop_duplicates().reset_index(drop=True).set_index(['countrycode'])
126126
```
127127

128-
Then we can quickly focus on GDP per capita (`gdppc`) and generate a wide data format
128+
Now we can focus on GDP per capita (`gdppc`) and generate a wide data format
129129

130130
```{code-cell} ipython3
131131
gdp_pc = data.set_index(['countrycode', 'year'])['gdppc']
@@ -157,7 +157,7 @@ In this section we examine GDP per capita over the long run for several differen
157157

158158
### United Kingdom
159159

160-
First we examine the UK GDP growth
160+
First we examine UK GDP growth
161161

162162
```{code-cell} ipython3
163163
---
@@ -498,6 +498,7 @@ draw_interp_plots(gdp[country].loc[start_year:end_year],
498498
```
499499

500500
#### Constructing a plot similar to Tooze's
501+
501502
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.
502503

503504
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.

0 commit comments

Comments
 (0)