Skip to content

Commit d1d0af6

Browse files
committed
fix typo
1 parent a86aecb commit d1d0af6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

numpy&pandas/18_plot.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@
2424
# plot methods:
2525
# 'bar', 'hist', 'box', 'kde', 'area', scatter', hexbin', 'pie'
2626
ax = data.plot.scatter(x='A', y='B', color='DarkBlue', label="Class 1")
27-
data.plot.scatter(x='A', y='C', color='DarkGreen', label='Class 2', ax=ax)
27+
data.plot.scatter(x='A', y='C', color='LightGreen', label='Class 2', ax=ax)
2828

2929
plt.show()

0 commit comments

Comments
 (0)