Skip to content

Commit 976f16b

Browse files
committed
use matplotlib default cycler
1 parent ed9f318 commit 976f16b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lectures/inequality.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -629,8 +629,8 @@ mystnb:
629629
x = data_usa.dropna().index.values
630630
y = data_usa.dropna().values
631631
plt.scatter(x,y)
632-
plt.plot(x1, a1*x1+b1, 'r-')
633-
plt.plot(x2, a2*x2+b2, 'y-')
632+
plt.plot(x1, a1*x1+b1)
633+
plt.plot(x2, a2*x2+b2)
634634
plt.title("USA gini coefficient dynamics")
635635
plt.legend(['Gini coefficient', 'Trend (before 1981)', 'Trend (after 1981)'])
636636
plt.ylim(25,45)

0 commit comments

Comments
 (0)