🔥Limited Offer: Get 50% OFFon AI & Full Stack Courses🔥
Back to Python Notes
Topic #123

Matplotlib Grid


Add Grid Lines to a Plot

With Pyplot, you can use the grid() function to add grid lines to the plot.

Example

import numpy as np
import matplotlib.pyplot as plt

x = np.array([80,
  85, 90, 95, 100, 105, 110, 115, 120, 125])
y = np.array([240, 250, 260,
  270, 280, 290, 300, 310, 320, 330])

plt.title("Sports Watch Data")
  plt.xlabel("Average Pulse")
plt.ylabel("Calorie Burnage")

plt.plot(x,
  y)

plt.grid()

plt.show()

image


Specify Which Grid Lines to Display

You can use the axis parameter in the grid() function to specify which grid lines to display.

Legal values are: 'x', 'y', and 'both'. Default value is 'both'.

Example

import numpy as np
import matplotlib.pyplot as plt

x = np.array([80,
  85, 90, 95, 100, 105, 110, 115, 120, 125])
y = np.array([240, 250, 260,
  270, 280, 290, 300, 310, 320, 330])

plt.title("Sports Watch Data")
  plt.xlabel("Average Pulse")
plt.ylabel("Calorie Burnage")

plt.plot(x,
  y)

plt.grid(axis = 'x')

plt.show()

image

Example

import numpy as np
import matplotlib.pyplot as plt

x = np.array([80,
  85, 90, 95, 100, 105, 110, 115, 120, 125])
y = np.array([240, 250, 260,
  270, 280, 290, 300, 310, 320, 330])

plt.title("Sports Watch Data")
  plt.xlabel("Average Pulse")
plt.ylabel("Calorie Burnage")

plt.plot(x,
  y)

plt.grid(axis = 'y')

plt.show()

image


Set Line Properties for the Grid

You can also set the line properties of the grid, like this: grid(color = 'color', linestyle = 'linestyle', linewidth = number).

Example

import numpy as np
import matplotlib.pyplot as plt

x = np.array([80,
  85, 90, 95, 100, 105, 110, 115, 120, 125])
y = np.array([240, 250, 260,
  270, 280, 290, 300, 310, 320, 330])

plt.title("Sports Watch Data")
plt.xlabel("Average
  Pulse")
plt.ylabel("Calorie Burnage")

plt.plot(x,
  y)

plt.grid(color = 'green', linestyle = '--', linewidth = 0.5)

plt.show()

image

Want to go beyond the notes?

Join CodingNow 2.0's Python course — live mentorship, real projects, and 100% placement support.

Enroll Now — Free Demo Available

Matplotlib Grid – FAQs

Quick answers about learning Matplotlib Grid in Python.

This free note from CodingNow 2.0 explains Matplotlib Grid in Python — concept, syntax and worked code examples you can copy, run and revise before interviews.
Yes. Every Python topic on CodingNow 2.0, including Matplotlib Grid, is 100% free with no signup required.
With focused practice, most students grasp Matplotlib Grid in 1–3 days from these notes; pairing it with CodingNow 2.0's mentor-led course takes you to job-ready depth faster.
Use the code examples in this note, then ask doubts for free on the CodingNow 2.0 Community (/community) — expert instructors answer within 24 hours.
WhatsApp
Call NowEnroll Now