You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lectures/inequality.md
+61-45Lines changed: 61 additions & 45 deletions
Original file line number
Diff line number
Diff line change
@@ -15,46 +15,60 @@ kernelspec:
15
15
16
16
## Overview
17
17
18
-
In this section we
18
+
In the lecture {doc}`long_run_growth` we studied how GDP per capita has changed
19
+
for certain countries and regions.
20
+
21
+
Per capital GDP is important because it gives us an idea of average income for
22
+
households in a given country.
23
+
24
+
However, when we study income and wealth, averages are only part of the story.
25
+
26
+
For example, imagine two societies, each with one million people, where
27
+
28
+
* in the first society, the yearly income of one man is $100,000,000 and the income of the
29
+
others is zero
30
+
* in the second society, the yearly income of everyone is $100
31
+
32
+
These countries have the same income per capita (average income is $100) but the lives of the people will be very different (e.g., almost everyone in the first society is
33
+
starving, even though one person is fabulously rich).
34
+
35
+
The example above suggests that we should go beyond simple averages when we study income and wealth.
36
+
37
+
This leads us to the topic of economic inequality, which examines how income and wealth (and other quantities) are distributed across a population.
38
+
39
+
In this lecture we study inequality, beginning with measures of inequality and
40
+
then applying them to wealth and income data from the US and other countries.
41
+
19
42
20
-
* provide motivation for the techniques deployed in the lecture and
21
-
* import code libraries needed for our work.
22
43
23
44
### Some history
24
45
25
-
Many historians argue that inequality played a key role in the fall of the
26
-
Roman Republic.
46
+
Many historians argue that inequality played a role in the fall of the Roman Republic (see, e.g., {cite}`levitt2019did`).
27
47
28
48
Following the defeat of Carthage and the invasion of Spain, money flowed into
29
49
Rome from across the empire, greatly enriched those in power.
30
50
31
51
Meanwhile, ordinary citizens were taken from their farms to fight for long
32
52
periods, diminishing their wealth.
33
53
34
-
The resulting growth in inequality caused political turmoil that shook the
35
-
foundations of the republic.
54
+
The resulting growth in inequality was a driving factor behind political turmoil that shook the foundations of the republic.
36
55
37
-
Eventually, the Roman Republic gave way to a series of dictatorships, starting
38
-
with Octavian (Augustus) in 27 BCE.
56
+
Eventually, the Roman Republic gave way to a series of dictatorships, starting with [Octavian](https://en.wikipedia.org/wiki/Augustus) (Augustus) in 27 BCE.
39
57
40
-
This history is fascinating in its own right, and we can see some
41
-
parallels with certain countries in the modern world.
58
+
This history tells us that inequality matters, in the sense that it can drive major world events.
42
59
43
-
Let's now look at inequality in some of these countries.
60
+
There are other reasons that inequality might matter, such as how it affects
61
+
human welfare.
44
62
45
-
46
-
### Measurement
63
+
With this motivation, let us start to think about what inequality is and how we
64
+
can quantify and analyze it.
47
65
48
66
49
-
Political debates often revolve around inequality.
50
-
51
-
One problem with these debates is that inequality is often poorly defined.
52
-
53
-
Moreover, debates on inequality are often tied to political beliefs.
67
+
### Measurement
54
68
55
-
This is dangerous for economists because allowing political beliefs to shape our findings reduces objectivity.
69
+
In politics and popular media, the word "inequality" is often used quite loosely, without any firm definition.
56
70
57
-
To bring a truly scientific perspective to the topic of inequality we must start with careful definitions.
71
+
To bring a scientific perspective to the topic of inequality we must start with careful definitions.
58
72
59
73
Hence we begin by discussing ways that inequality can be measured in economic research.
60
74
@@ -77,6 +91,8 @@ import wbgapi as wb
77
91
import plotly.express as px
78
92
```
79
93
94
+
95
+
80
96
## The Lorenz curve
81
97
82
98
One popular measure of inequality is the Lorenz curve.
@@ -197,7 +213,7 @@ households own just over 40\% of total wealth.
The World in Data project has a [nice graphical exploration of the Lorenz curve and the Gini coefficient](https://ourworldindata.org/what-is-the-gini-coefficient)
429
+
The World in Data project has a [graphical exploration of the Lorenz curve and the Gini coefficient](https://ourworldindata.org/what-is-the-gini-coefficient)
412
430
```
413
431
414
432
### Gini coefficient of simulated data
@@ -527,7 +545,7 @@ To get a quick overview, let's histogram Gini coefficients across all countries
527
545
---
528
546
mystnb:
529
547
figure:
530
-
caption: Histogram of Gini coefficients
548
+
caption: Histogram of Gini coefficients across countries
531
549
name: gini_histogram
532
550
---
533
551
# Fetch gini data for all countries
@@ -585,21 +603,20 @@ As can be seen in {numref}`gini_usa1`, the income Gini
585
603
trended upward from 1980 to 2020 and then dropped following at the start of the COVID pandemic.
586
604
587
605
(compare-income-wealth-usa-over-time)=
588
-
### Gini coefficient for wealth (US data)
606
+
### Gini coefficient for wealth
589
607
590
-
In the previous section we looked at the Gini coefficient for income using US data.
608
+
In the previous section we looked at the Gini coefficient for income, focusing on using US data.
591
609
592
610
Now let's look at the Gini coefficient for the distribution of wealth.
593
611
594
-
We can use the {ref}`Survey of Consumer Finances data <data:survey-consumer-finance>` to look at the Gini coefficient
595
-
computed over the wealth distribution.
612
+
We will use US data from the {ref}`Survey of Consumer Finances<data:survey-consumer-finance>`
596
613
597
614
598
615
```{code-cell} ipython3
599
616
df_income_wealth.year.describe()
600
617
```
601
618
602
-
**Note:**This code can be used to compute this information over the full dataset.
619
+
This code can be used to compute this information over the full dataset.
603
620
604
621
```{code-cell} ipython3
605
622
:tags: [skip-execution, hide-input, hide-output]
@@ -666,7 +683,6 @@ plt.show()
666
683
The time series for the wealth Gini exhibits a U-shape, falling until the early
667
684
1980s and then increasing rapidly.
668
685
669
-
670
686
One possibility is that this change is mainly driven by technology.
671
687
672
688
However, we will see below that not all advanced economies experienced similar growth of inequality.
@@ -677,7 +693,8 @@ However, we will see below that not all advanced economies experienced similar g
677
693
678
694
### Cross-country comparisons of income inequality
679
695
680
-
Earlier in this lecture we used `wbgapi` to get Gini data across many countries and saved it in a variable called `gini_all`
696
+
Earlier in this lecture we used `wbgapi` to get Gini data across many countries
697
+
and saved it in a variable called `gini_all`
681
698
682
699
In this section we will use this data to compare several advanced economies, and
683
700
to look at the evolution in their respective income Ginis.
@@ -821,7 +838,6 @@ the US exhibits persistent but stable levels around a Gini coefficient of 40.
821
838
822
839
Another popular measure of inequality is the top shares.
823
840
824
-
825
841
In this section we show how to compute top shares.
0 commit comments