I have a subplot with to time series in one graph. Using the code :
df1 = pd.read_csv('data1.csv')
df2 = pd.read_csv('data2.csv')
plt.plot(df2['Date'],df2[data2'])
plt.plot(df2['Date'],df1['data1'])
plt.show()
Now I want to shade the areas when data2
cross a certain value. Is there a way to do this?