matplotlib.pyplot.grid()函数
Matplotlib是Python中的一个库,它是NumPy库的数值-数学扩展。Pyplot是一个基于状态的Matplotlib模块接口,该模块提供了一个类似matlab的接口。
matplotlib.pyplot.grid()函数
使用matplotlib库的pyplot模块中的grid()函数来配置网格线。
语法:matplotlib.pyplot.grid(b=None,其中= ‘ major ‘, axis= ‘ both ‘, \\kwargs)
参数:该方法接受以下参数。
- b:该参数为可选参数,决定是否显示网格线。
- which:该参数也是一个可选参数,它是应用更改的网格线。
- axis:该参数也是一个可选参数,它是应用更改的轴。
返回:此方法不返回任何值。
下面的例子演示了matplotlib.pyplot.grid()函数在matplotlib.pyplot中的作用:
示例1
# Implementation of matplotlib function
import matplotlib.pyplot as plt
import numpy as np
plt.plot([1, 2, 3])
plt.grid()
plt.title('matplotlib.pyplot.grid() function \
Example\n\n', fontweight ="bold")
plt.show()
输出:
示例2
# Implementation of matplotlib function
import numpy as np
import matplotlib.pyplot as plt
np.random.seed(19680801)
val, res = 100, 15
x = np.sin(val + res * np.random.randn(10000)) - np.cos(val + res * np.random.randn(10000))
n, bins, patches = plt.hist(x, 200,
density = True,
facecolor ='g',
alpha = 0.5)
plt.grid(True)
plt.title('matplotlib.pyplot.grid() function \
Example\n\n', fontweight ="bold")
plt.show()
输出: