gpt4 book ai didi

matplotlib - gca 和最新版本的 Matplotlib

转载 作者:行者123 更新时间:2023-12-04 12:04:48 25 4
gpt4 key购买 nike

我刚刚安装了最新版本的 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')

关于matplotlib - gca 和最新版本的 Matplotlib,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67095247/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com