user2563661
user2563661

Reputation: 334

Highlight range at the bottom of plot

I need to produce a plot with certain ranges highlighted. The problem is that I cannot use axvspan that would fill the span area from top to bottom. I need to limit the spanned area only to the bottom, as can be seen in the image below, where the range 0.5-1.5 is highlighted:

enter image description here

Is there a way to achieve this in matplotlib?

Upvotes: 0

Views: 321

Answers (1)

Kefeng91
Kefeng91

Reputation: 812

You can define the boundaries of your rectangle (xmin, xmax, ymin, ymax) in axvspan.

import numpy as np
import matplotlib.pyplot as plt

x = np.linspace(-1.0, 2.0, 301)
y = np.sin(2.0 * np.pi * x)
plt.plot(x, y)
plt.axvspan(0.5, 1.5, ymax=0.05, color="gray")
plt.show()

Note that ymin and ymax are relative coordinates (between 0 and 1).

Upvotes: 1

Related Questions