NameError: name 'figsize' is not defined
时间: 2023-09-18 19:09:40 浏览: 215
Python中对错误NameError: name ‘xxx’ is not defined进行总结
5星 · 资源好评率100%
这个错误通常发生在使用 Matplotlib 绘图时,没有定义图像大小(figsize)。可以在代码中添加以下行来定义图像大小:
```python
import matplotlib.pyplot as plt
fig, ax = plt.subplots(figsize=(width, height))
```
其中 `width` 和 `height` 分别是图像的宽度和高度。你可以设置它们为你想要的任何值。
阅读全文