We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 059eaf6 commit dd87e38Copy full SHA for dd87e38
lectures/inequality.md
@@ -558,7 +558,9 @@ mystnb:
558
---
559
fig, ax = plt.subplots()
560
ax = data_usa.plot(ax=ax)
561
-ax.set_ylim(0,data_usa.max()+5)
+ax.set_ylim(0, data_usa.max() + 5)
562
+ax.set_ylabel("Gini coefficient")
563
+ax.set_xlabel("year")
564
plt.show()
565
```
566
@@ -582,7 +584,7 @@ gini_all = gini_all.unstack(level='economy').dropna()
582
584
gini_all.plot(kind="hist",
583
585
bins=20,
586
title="Gini coefficient"
- )
587
+ )
588
589
590
0 commit comments