TypeError: 'AxesSubplot' object is not callable
时间: 2023-10-14 09:12:07 浏览: 160
Django错误:TypeError at / 'bool' object is not callable解决
5星 · 资源好评率100%
这个错误通常出现在使用Matplotlib绘图时,代码中出现了类似于下面这样的语句:
```
plt.plot(x, y)(...)
```
出现这个错误的原因是因为 `plt.plot` 返回的是一个 AxesSubplot 对象,而在上面的代码中将其当做函数进行了调用。
要解决这个问题,只需要将上面的代码改为:
```
plt.plot(x, y, ...)
```
即可。
阅读全文