温馨提示×

Matplotlib中怎么设置网格线的可见性

小亿
84
2024-05-11 18:50:48
栏目: 编程语言

要设置Matplotlib图中网格线的可见性,可以使用Axes对象的grid方法。可以通过将参数visible设置为True或False来控制网格线的可见性。

下面是一个简单的示例代码,演示如何在Matplotlib中设置网格线的可见性:

import matplotlib.pyplot as plt

x = [1, 2, 3, 4, 5]
y = [2, 3, 5, 7, 11]

fig, ax = plt.subplots()
ax.plot(x, y)

# 设置网格线可见性为True
ax.grid(visible=True)

plt.show()

在上面的例子中,我们创建了一个简单的折线图,并通过ax.grid(visible=True)设置了网格线的可见性为True。您也可以将visible设置为False来隐藏网格线。

0