matplotlib保存图片代码
时间: 2023-10-14 16:17:09 浏览: 83
MATLAB中保存图片的方法.pdf
你可以使用以下代码将 matplotlib 图形保存为图片:
```python
import matplotlib.pyplot as plt
# 创建一个图形对象并绘制图形
fig, ax = plt.subplots()
ax.plot([1, 2, 3], [4, 5, 6])
# 保存图形为 PNG 文件
fig.savefig('myplot.png')
```
将文件名替换为你想要保存的文件名,并根据需要调整文件格式。Matplotlib 支持多种文件格式,包括 PNG、PDF、SVG、EPS 等。
阅读全文