matplotlib添加网格
时间: 2023-07-12 08:16:16 浏览: 74
如何基于Python Matplotlib实现网格动画
5星 · 资源好评率100%
要在matplotlib中添加网格,可以使用`grid()`函数。该函数可以在当前图形中添加水平和垂直网格线。以下是示例代码:
```python
import matplotlib.pyplot as plt
# 创建一个图形对象和一个子图对象
fig, ax = plt.subplots()
# 绘制一些数据
x = [1, 2, 3, 4, 5]
y = [2, 4, 6, 8, 10]
ax.plot(x, y, 'o--')
# 添加网格线
ax.grid(True)
# 显示图形
plt.show()
```
在该示例代码中,我们首先使用`subplots()`函数创建一个图形对象和一个子图对象。然后,我们绘制了一些数据,并使用`grid()`函数在子图中添加了网格线。最后,我们使用`show()`函数显示图形。
阅读全文