【错误解决方案】TypeError: gca() got an unexpected keyword argument ‘projection‘

1. 错误提示

在 python程序中,使用Matplotlib库中的 gca() 函数出现错误,提示“TypeError: gca() got an unexpected keyword argument 'projection'”。

【错误解决方案】TypeError: gca() got an unexpected keyword argument ‘projection‘_第1张图片

2. 解决方案

这个错误的原因是 gca() 函数并不接受 projection 这个关键字参数。
gca() 函数是用来获取当前的Axes实例,并不涉及到projection。如果你想设置一个2D或者3D的图形,你应该使用 figure() 函数来创建一个新的figure,然后使用 add_subplot() 或者 add_axes() 函数来添加一个Axes。

上述步骤能够解决出现的错误,但仍然画不出目标图形,解决方法:改成如下代码即可运行:

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

你可能感兴趣的:(错误解决方案,前端)