-3

I want to create a more clear timeseries plot by partitioning the plot into sections through dashed lines. I am using Python's package Seaborn.

Example, right now I have this: enter image description here

But I want to get this enter image description here

Thank you so much for your help!

Liubove
  • 53
  • 5
  • [`Axes.axvline`](https://matplotlib.org/stable/api/_as_gen/matplotlib.axes.Axes.axvline.html)? – BigBen Apr 25 '22 at 17:44

1 Answers1

0

Since you haven't mentioned anything about your data, this could be helpful by manually writing the x values (just my guess from your plot)

plt.axvline(110,280,880,1050,1080,1120, color="black")
ML_Enthu
  • 167
  • 1
  • 8