Skip to content

Commit e51eb63

Browse files
authored
Merge pull request #35 from canute24/mpl-api-update
Updated with changes as per newer matplotlib api to remove deprecation warning
2 parents 3c01b35 + f8bc59f commit e51eb63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

AnatomyOfMatplotlib-Part2-Plotting_Methods_Overview.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@
116116
"# We could have also done this with two separate calls to `ax.bar` and numpy boolean indexing.\n",
117117
"for bar, height in zip(vert_bars, y):\n",
118118
" if height < 0:\n",
119-
" bar.set(edgecolor='darkred', color='salmon', linewidth=3)\n",
119+
" bar.set(color='salmon', edgecolor='darkred', linewidth=3)\n",
120120
"\n",
121121
"plt.show()"
122122
]

0 commit comments

Comments
 (0)