Matplotlib.pyplot.grid() in Python
Last Updated : 21 Apr, 2020
Improve
Matplotlib is a library in Python and it is numerical - mathematical extension for NumPy library. Pyplot is a state-based interface to a Matplotlib module which provides a MATLAB-like interface.The grid() function in pyplot module of matplotlib library is used to configure the grid lines.Python3 1== Output:
Example #2:Python3 1== Output: 
matplotlib.pyplot.grid() Function
Syntax: matplotlib.pyplot.grid(b=None, which='major', axis='both', \*\*kwargs) Parameters: This method accept the following parameters.Below examples illustrate the matplotlib.pyplot.grid() function in matplotlib.pyplot: Example #1:Returns:This method does not return any value.
- b : This parameter is an optional parameter, whether to show the grid lines or not.
- which : This parameter is also an optional parameter and it is the grid lines to apply the changes on.
- axis :This parameter is also an optional parameter and it is the axis to apply the changes on.
# 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()

# 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, es = 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()
