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
gca() with keyword arguments was deprecated in Matplotlib 3.4 usingsubplot() or add_subplot()may resolve the question
gca()
subplot()
add_subplot()
The text was updated successfully, but these errors were encountered:
using "ax = fig.add_subplot(111, projection='3d')" solved the problem in my case
Sorry, something went wrong.
It looks like the first argument is optional in matplotlib.
ax = fig.add_subplot(projection='3d')
worked for me.
No branches or pull requests
gca()
with keyword arguments was deprecated in Matplotlib 3.4using
subplot()
oradd_subplot()
may resolve the questionThe text was updated successfully, but these errors were encountered: