I have a Timeseries data for leaks which is a csv file and I have another excel file which have date when the leak has occured. I want to plot this on same graph for visulaization and to point when leak has occured. I am not able to plot this on same graph using matplotlib. Can someone help me with this. I am using python programming.
import matplotlib.pyplot as plt
rows = 3
cols = 4
fig, axes = plt.subplots(figsize=(30,10))
df.plot(ax=axes, rot=60)
I was trying to use the above matplot lib code to plot.
This one is the Timeseries data which i have from the database for sensors.