GCA和Matplotlib的最新版本

rkue9o1l  于 2023-10-24  发布在  其他
关注(0)|答案(3)|浏览(148)

我刚刚安装了最新版本的Matplotlib(3.4.1)。

ax = fig.gca(projection='3d')

我得到以下警告:

Calling gca() with keyword arguments was deprecated in Matplotlib 3.4. 
Starting two minor releases later, gca() will take no keyword arguments.  
The gca() function should only be used to get the current axes,
or if no axes exist, create new axes with default keyword arguments.
To create a new axes with non-default arguments,
use plt.axes() or plt.subplot().

我如何绕过这个问题,使我的代码不给给予这个警告?

6uxekuva

6uxekuva1#

您可以尝试:

fig = plt.figure()
ax = fig.add_subplot(projection='3d')
0qx6xfy6

0qx6xfy62#

fig = plt.figure()
plt.subplot(projection='3d')

plt.plot([0, v1[0]], [0, v1[1]], [0, v1[2]], 'b')
plt.plot([0, v2[0]], [0, v2[1]], [0, v2[2]], 'r')

fig = plt.figure()
ax = fig.add_subplot(projection='3d')

ax.plot([0, v1[0]], [0, v1[1]], [0, v1[2]], 'b')
ax.plot([0, v2[0]], [0, v2[1]], [0, v2[2]], 'r')

而不是

fig = plt.figure()
ax = fig.gca(projection='3d')

ax.plot([0, v1[0]], [0, v1[1]], [0, v1[2]], 'b')
ax.plot([0, v2[0]], [0, v2[1]], [0, v2[2]], 'r')

希望这对你有帮助,

n9vozmp4

n9vozmp43#

fig = plt.figure()
ax =fig.add_subplot(projection='3d')

它解决了错误,并且比其他方法更干净。

相关问题