Plot different DataFrames in the same figure

Try:

ax = df1.plot()
df2.plot(ax=ax)

Leave a Comment