If you use code like
df1.plot() df2.plot()
you will see both DataFrames being plotted each in their separate graphs/plots.
In order to plot both of them in a single plot, use
ax = df1.plot() df2.plot(ax=ax)
If you use code like
df1.plot() df2.plot()
you will see both DataFrames being plotted each in their separate graphs/plots.
In order to plot both of them in a single plot, use
ax = df1.plot() df2.plot(ax=ax)