python将生成的格网图图保存
时间: 2023-11-09 09:04:13 浏览: 65
Python爬虫120例之350图图.7z
5星 · 资源好评率100%
你可以使用 Python 的 Matplotlib 库来生成和保存格网图。下面是一个例子:
```python
import matplotlib.pyplot as plt
# 生成格网图
fig, ax = plt.subplots()
ax.plot([1, 2, 3, 4, 5], [1, 2, 3, 4, 5], 'o')
ax.grid(True)
# 保存图像
fig.savefig('grid.png')
```
这个例子中,我们首先使用 Matplotlib 中的 `subplots()` 函数创建一个带有一个子图的图形对象。然后,我们在子图上绘制一些数据点,并使用 `grid(True)` 方法添加格网线。最后,我们使用 `savefig()` 方法将图像保存到指定的文件名中(在这个例子中为 `grid.png`)。
阅读全文