adashofdata/nlp-in-python-tutorial

ymin and ymax in Matplotlib are deprecated

dcgonzalez001 opened this issue · 1 comments

Context

I went through this tutorial on 2019-07-07 with vanilla installs of recommended software applications and updates on a Windows 10 Home x64 machine and encountered a deprecation warning when running 3-Sentiment-Analysis.ipynb in the jupyter notebook.

Issues

The ymin argument was deprecated in Matplotlib 3.0 and will be removed in 3.2.
The ymax argument was deprecated in Matplotlib 3.0 and will be removed in 3.2.

Solution

Update code in 3-Sentiment-Analysis.ipynb from original:

plt.ylim(ymin=-.2, ymax=.3)

to

# plt.ylim(ymin=-.2, ymax=.3) (deprecated)
plt.ylim(bottom=-.2, top=.3)

Updated the code. Thanks for logging this issue!