Skip to content

Commit dfbad23

Browse files
authored
Merge pull request #245 from QuantEcon/review_lectures
Review lectures
2 parents 6e94242 + 0a80fbc commit dfbad23

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-19
lines changed

lectures/long_run_growth.md

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ In a nutshell, this lecture records growth trajectories of various countries ove
3333

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

36-
Since populations differ across country and within a country vary over time, it will
36+
Since populations differ across countries and vary within a country over time, it will
3737
be interesting to describe both total GDP and GDP per capita as it evolves within a country.
3838

3939
First let's import the packages needed to explore what the data says about long run growth
@@ -56,7 +56,7 @@ some dating back to the first century.
5656

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

59-
For convenience, here is a copy of the 2020 data {download}`in Excel format <datasets/mpd2020.xlsx>`.
59+
For convenience, here is a copy of the {download}`2020 data <datasets/mpd2020.xlsx>` in `Excel` format.
6060

6161
Let's read it into a pandas dataframe:
6262

@@ -91,7 +91,7 @@ cntry_years
9191

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

94-
We can build a useful mapping between country code's and country names in this dataset
94+
We can build a useful mapping between country codes and country names in this dataset
9595

9696
```{code-cell} ipython3
9797
code_to_name = data[['countrycode','country']].drop_duplicates().reset_index(drop=True).set_index(['countrycode'])
@@ -153,7 +153,7 @@ _ = gdppc[cntry].plot(
153153
[International Dollars](https://en.wikipedia.org/wiki/International_dollar) are a hypothetical unit of currency that has the same purchasing power parity that the U.S. Dollar has in the United States at any given time. They are also known as Geary–Khamis dollars (GK Dollars).
154154
:::
155155

156-
We can see that the data is non-continuous for longer periods in the early part of this millennium, so we could choose to interpolate to get a continuous line plot.
156+
We can see that the data is non-continuous for longer periods in the early 250 years of this millennium, so we could choose to interpolate to get a continuous line plot.
157157

158158
Here we use dashed lines to indicate interpolated trends
159159

@@ -291,13 +291,13 @@ plt.show()
291291
```
292292

293293

294-
The preceding graph of percapita GDP strikingly reveals how the spread of the industrial revolution has over time gradually lifted the living standards of substantial
294+
The preceding graph of per capita GDP strikingly reveals how the spread of the industrial revolution has over time gradually lifted the living standards of substantial
295295
groups of people
296296

297-
- Most of the growth happened in the past 150 years after the industrial revolution.
298-
- Percapita GDP's in the UK and the US, on the one hand, and in China, on the other, diverged from 1820 to 1940.
299-
- The gap has closed rapidly after 1950 and especially after the late 1970s.
300-
- These outcomes reflect complicated combinations of technological and economic-policy factors that students of economic growth try to understand and quantify
297+
- most of the growth happened in the past 150 years after the industrial revolution.
298+
- per capita GDP in the US and UK rose and diverged from that of China from 1820 to 1940.
299+
- the gap has closed rapidly after 1950 and especially after the late 1970s.
300+
- these outcomes reflect complicated combinations of technological and economic-policy factors that students of economic growth try to understand and quantify.
301301

302302

303303
It is fascinating to see China's GDP per capita levels from 1500 through to the 1970s.
@@ -306,10 +306,10 @@ Notice the long period of declining GDP per capital levels from the 1700s until
306306

307307
Thus, the graph indicates
308308

309-
- A long economic downturn and stagnation after the Closed-door Policy by the Qing government
310-
- China's very different experience than the UK's after the onset of the industrial revolution in the UK
311-
- How the Self-Strengthening Movement seemed mostly to help China to grow
312-
- How stunning have been the growth achievements of Modern Chinese economic policies by the PRC that culminated with its late 1970s Reform and Opening-up
309+
- a long economic downturn and stagnation after the Closed-door Policy by the Qing government.
310+
- China's very different experience than the UK's after the onset of the industrial revolution in the UK.
311+
- how the Self-Strengthening Movement seemed mostly to help China to grow.
312+
- how stunning have been the growth achievements of modern Chinese economic policies by the PRC that culminated with its late 1970s reform and liberalization.
313313

314314
```{code-cell} ipython3
315315
---
@@ -363,11 +363,11 @@ plt.show()
363363
We can also look at the United States (USA) and United Kingdom (GBR) in more detail
364364

365365
In the following graph, please watch for
366-
- impact of trade policy (Navigation Act)
367-
- productivity changes brought by the industrial revolution
368-
- how the US gradually approaches and then surpasses the UK, setting the stage for the ``American Century''
369-
- the often unanticipated consequences of wars
370-
- interruptions and scars left by {ref}`business cycle<mc1_ex_1>` recessions and depressions
366+
- impact of trade policy (Navigation Act).
367+
- productivity changes brought by the industrial revolution.
368+
- how the US gradually approaches and then surpasses the UK, setting the stage for the ''American Century''.
369+
- the often unanticipated consequences of wars.
370+
- interruptions and scars left by [business cycle](business_cycle) recessions and depressions.
371371

372372
```{code-cell} ipython3
373373
---
@@ -527,7 +527,7 @@ ax = worldgdppc.plot(
527527
)
528528
```
529529

530-
Looking more closely, let's compare the time series for `Western Offshoots` and `Sub-Saharan Africa` and more broadly at a number of different regions around the world
530+
Looking more closely, let's compare the time series for `Western Offshoots` and `Sub-Saharan Africa` and more broadly at a number of different regions around the world.
531531

532532
Again we see the divergence of the West from the rest of the world after the industrial revolution and the convergence of the world after the 1950s
533533

0 commit comments

Comments
 (0)