You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.../site-packages/mlxtend/plotting/decision_regions.py:249: MatplotlibDeprecationWarning: Passing unsupported keyword arguments to axis() will raise a TypeError in 3.3.
ax.axis(xmin=xx.min(), xmax=xx.max(), y_min=yy.min(), y_max=yy.max())
Thanks for the note, it looks like there's been some change in matplotlib recently (didn't get the warning in previous version). I can patch that via a PR
I am referring to the function
plot_decision_regions()
in filemlxtend/plotting/decision_regions.py
, at line 249,This line causes a warning message :
Here is the document of
axis()
,It indeed does not call the method with expected arguments and should simply changed as follows,
The text was updated successfully, but these errors were encountered: