I have one figure that contains many subheadings.
fig = plt.figure(num=None, figsize=(26, 12), dpi=80, facecolor='w', edgecolor='k') fig.canvas.set_window_title('Window Title')
How to add headings to subheadings?
fig.suptitle adds a title for all graphs, and although ax.set_title() exists, the latter does not add a title to my subtasks.
Thank you for your help.
Edit: Fixed typo about set_title() . Thanks Rutger Kassies
python matplotlib plot subtitle
shailenTJ Aug 11 '14 at 9:25 a.m. 2014-08-11 09:25
source share