I\'m looking for advice on how to show a title at the top of a collection of histogram plots that have been generated by a pandas df.hist() command. For instance, in the his
With newer Pandas versions, if someone is interested, here a slightly different solution with Pandas only:
ax = data.plot(kind='hist',subplots=True,sharex=True,sharey=True,title='My title')