我刚刚安装了最新版本的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().
我如何绕过这个问题,使我的代码不给给予这个警告?
3条答案
按热度按时间6uxekuva1#
您可以尝试:
0qx6xfy62#
或
而不是
希望这对你有帮助,
n9vozmp43#
它解决了错误,并且比其他方法更干净。