gca和最新版本的Matplotlib
我刚刚安装了最新版本的 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().
我如何解决这个问题,以便我的代码不发出此警告?
回答
你可以试试:
fig = plt.figure()
ax = fig.add_subplot(projection='3d')