How to plot different groups of data from a dataframe into a single figure

Try:

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

Leave a Comment