Hopefully an easy question, I'm trying to plot a hierarchical dataframe into separate plots per hierarchy. I've grouped by the hierarchies and want to plot the data via setting the X and Y axis corresponding to the relevant columns, however I'm not sure how to set the plot title equal to the hierarchy name of that group?
for example if the hierarchy names were a, b, c the 3 plots should have titles a, b, c.
dfplot.groupby(level=0, sort=False).plot(x='Date', y='Adj Close',
figsize=(16, 6));