Skip to content

Commit df79fd5

Browse files
committed
update minor changes
1 parent 29f95be commit df79fd5

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

lectures/long_run_growth.md

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

1616
## Overview
1717

18-
In this lecture we use Python, [pandas](https://pandas.pydata.org/), and [Matplotlib](https://matplotlib.org/) to download, organize, and visualize historical data on economic growth.
18+
In this lecture we use Python, {doc}`pandas<pyprog:pandas>`, and {doc}`Matplotlib<pyprog:matplotlib>` to download, organize, and visualize historical data on economic growth.
1919

2020
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.
2121

2222
Such "growth facts" are interesting for a variety of reasons.
2323

2424
Explaining growth facts is a principal purpose of both "development economics" and "economic history".
2525

26-
And growth facts are important inputs into historians' studies of geopolitical forces and dynamics.
26+
And growth facts are important inputs into historians' studies of geopolitical forces and dynamics.
2727

2828

2929
Thus, Adam Tooze's account of the geopolitical precedents and antecedents of World War I begins by describing how the Gross Domestic Products (GDP) of European Great Powers had evolved during the 70 years preceding 1914 (see chapter 1 of {cite}`Tooze_2014`).
@@ -57,7 +57,7 @@ These graphs will portray how the "Industrial Revolution" began in Britain in th
5757

5858
In a nutshell, this lecture records growth trajectories of various countries over long time periods.
5959

60-
While some countries have experienced long term rapid growth across that has lasted a hundred years, others have not.
60+
While some countries have experienced long-term rapid growth across that has lasted a hundred years, others have not.
6161

6262
Since populations differ across countries and vary within a country over time, it will
6363
be interesting to describe both total GDP and GDP per capita as it evolves within a country.
@@ -77,7 +77,7 @@ from collections import namedtuple
7777
A project initiated by [Angus Maddison](https://en.wikipedia.org/wiki/Angus_Maddison) has collected many historical time series related to economic growth,
7878
some dating back to the first century.
7979

80-
The data can be downloaded from the [Maddison Historical Statistics webpage](https://www.rug.nl/ggdc/historicaldevelopment/maddison/) by clicking on the "Latest Maddison Project Release".
80+
The data can be downloaded from the [Maddison Historical Statistics](https://www.rug.nl/ggdc/historicaldevelopment/maddison/) by clicking on the "Latest Maddison Project Release".
8181

8282
We are going to read the data from a QuantEcon GitHub repository.
8383

@@ -116,7 +116,7 @@ country_years = pd.DataFrame(country_years,
116116
country_years.head()
117117
```
118118

119-
Let's now reshape the original data into some convenient variables to enable quicker access to countries time series data.
119+
Let's now reshape the original data into some convenient variables to enable quicker access to countries' time series data.
120120

121121
We can build a useful mapping between country codes and country names in this dataset
122122

@@ -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 UK GDP growth
160+
First we examine the UK GDP growth
161161

162162
```{code-cell} ipython3
163163
---
@@ -425,7 +425,7 @@ draw_interp_plots(gdp_pc[country].loc[1500:2000],
425425
426426
ylim = ax.get_ylim()[1]
427427
428-
# Create a list of data points=
428+
# Create a list of data points
429429
events = [
430430
Event((1651, 1651), ylim + ylim*0.15,
431431
'Navigation Act (UK)\n(1651)',
@@ -560,7 +560,7 @@ draw_interp_plots(gdp[country].loc[start_year:end_year],
560560
color_mapping, code_to_name, 2, False, ax)
561561
```
562562

563-
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`.
563+
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`.
564564

565565
## Regional analysis
566566

0 commit comments

Comments
 (0)