Skip to content

Commit

Permalink
update minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
HumphreyYang committed Feb 5, 2024
1 parent 29f95be commit df79fd5
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions lectures/long_run_growth.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ kernelspec:

## Overview

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

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.

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

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

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


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`).
Expand Down Expand Up @@ -57,7 +57,7 @@ These graphs will portray how the "Industrial Revolution" began in Britain in th

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

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

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

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

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

Expand Down Expand Up @@ -116,7 +116,7 @@ country_years = pd.DataFrame(country_years,
country_years.head()
```

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

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

Expand Down Expand Up @@ -157,7 +157,7 @@ In this section we examine GDP per capita over the long run for several differen

### United Kingdom

First we examine UK GDP growth
First we examine the UK GDP growth

```{code-cell} ipython3
---
Expand Down Expand Up @@ -425,7 +425,7 @@ draw_interp_plots(gdp_pc[country].loc[1500:2000],
ylim = ax.get_ylim()[1]
# Create a list of data points=
# Create a list of data points
events = [
Event((1651, 1651), ylim + ylim*0.15,
'Navigation Act (UK)\n(1651)',
Expand Down Expand Up @@ -560,7 +560,7 @@ draw_interp_plots(gdp[country].loc[start_year:end_year],
color_mapping, code_to_name, 2, False, ax)
```

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

## Regional analysis

Expand Down

0 comments on commit df79fd5

Please sign in to comment.