Open neronotdante opened 2 years ago
gca() with keyword arguments was deprecated in Matplotlib 3.4 usingsubplot() or add_subplot()may resolve the question
gca()
subplot()
add_subplot()
您的来信已收到,谢谢!
using "ax = fig.add_subplot(111, projection='3d')" solved the problem in my case
It looks like the first argument is optional in matplotlib.
ax = fig.add_subplot(projection='3d')
worked for me.
gca()
with keyword arguments was deprecated in Matplotlib 3.4 usingsubplot()
oradd_subplot()
may resolve the question