在Matplotlib中添加网格线可以使用plt.grid()
函数。示例如下:
import matplotlib.pyplot as plt
# 创建一个简单的折线图
x = [1, 2, 3, 4, 5]
y = [10, 15, 13, 18, 16]
plt.plot(x, y)
# 添加网格线
plt.grid(True)
plt.show()
在上面的示例中,plt.grid(True)
表示将网格线显示出来。你也可以根据需要自定义网格线的样式,如改变颜色、线型、透明度等。