We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TypeError Traceback (most recent call last)
TypeError
Traceback (most recent call last)
<ipython-input-96-564aeedf8d76> in <module> ----> 1 plt.boxplot(X_train, manage_xticks= False) 2 plt.yscale("symlog") 3 plt.xlabel("Feature index") 4 plt.ylabel("Feature magnitude")
<ipython-input-96-564aeedf8d76> in <module>
----> 1 plt.boxplot(X_train, manage_xticks= False)
2 plt.yscale("symlog")
3 plt.xlabel("Feature index")
4 plt.ylabel("Feature magnitude")
TypeError: boxplot() got an unexpected keyword argument 'manage_xticks'
The text was updated successfully, but these errors were encountered:
Please provide a description to your code! The error is clear; from https://matplotlib.org/3.1.1/api/_as_gen/matplotlib.pyplot.boxplot.html, you can see that boxplot() has no argument manage_xticks but rather manage_ticks.
boxplot()
manage_xticks
manage_ticks
Sorry, something went wrong.
Thanks! That was the problem. I was just copying the code directly from the book tho and the author wrote manage_xticks instead of manage_ticks
That must have been a change in the matplotlib API at some point. I'll keep it open as it needs to be fixed in the book.
No branches or pull requests
TypeError
Traceback (most recent call last)
<ipython-input-96-564aeedf8d76> in <module>
----> 1 plt.boxplot(X_train, manage_xticks= False)
2 plt.yscale("symlog")
3 plt.xlabel("Feature index")
4 plt.ylabel("Feature magnitude")
TypeError: boxplot() got an unexpected keyword argument 'manage_xticks'
The text was updated successfully, but these errors were encountered: