Skip to content

[inequality] Compare Labour Income and Wealth #412

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
mmcky opened this issue Apr 1, 2024 · 5 comments
Closed

[inequality] Compare Labour Income and Wealth #412

mmcky opened this issue Apr 1, 2024 · 5 comments
Assignees

Comments

@mmcky
Copy link
Contributor

mmcky commented Apr 1, 2024

Previously we had compared labour income and income (from the World bank) Gini coefficients but they exibit different trends.
Further research into explaining these differences is required.

Looking at each data series we see an outlier in Gini coefficient computed for 1965 for `labour income`. 

We will smooth our data and take an average of the data either side of it for the time being.

```{code-cell} ipython3
ginis["l_income"][1965] = (ginis["l_income"][1962] + ginis["l_income"][1968]) / 2
```

Now we can compare net wealth and labour income.

```{code-cell} ipython3
---
mystnb:
  figure:
    caption: Gini coefficients of US net wealth and labour income
    name: gini_wealth_us2
---
fig, ax = plt.subplots()
ax.plot(years, ginis["n_wealth"], marker='o', label="net wealth")
ax.plot(years, ginis["l_income"], marker='o', label="labour income")
ax.set_xlabel("year")
ax.set_ylabel("Gini coefficient")
ax.legend()
plt.show()
```

We see that, by this measure, inequality in both wealth and income has risen
substantially since 1980.
@mmcky
Copy link
Contributor Author

mmcky commented Jul 1, 2024

@jstac I have been thinking about this distinction. Given the tell similar overall stories (just differences in degree) I think it could be a good simplification to leave this out.

What do you think?

@mmcky mmcky self-assigned this Jul 1, 2024
@jstac
Copy link
Contributor

jstac commented Jul 1, 2024

@mmcky , what does "leave this out" mean here? Drop one of the measures of income?

@mmcky
Copy link
Contributor Author

mmcky commented Jul 1, 2024

@mmcky , what does "leave this out" mean here? Drop one of the measures of income?

@jstac The above snippet of text was removed when we edited the lecture. I am suggesting we don't add it back in.

@jstac
Copy link
Contributor

jstac commented Jul 1, 2024

Agree. Thanks @mmcky

@mmcky
Copy link
Contributor Author

mmcky commented Jul 1, 2024

thanks @jstac

@mmcky mmcky closed this as completed Jul 1, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants