0

How can I set a "global" subtitle when there are subplots? Here is my best solution, but I need to set a different font size for the subtitle:

import matplotlib.pyplot as plt
    
fig, axes = plt.subplots(2,2)
fig.suptitle('Global Title\nGlobal Subtitle.')
plt.tight_layout()  

enter image description here

user64150
  • 59
  • 5
  • Does this answer your question? [Multiple font sizes in plot title](https://stackoverflow.com/questions/28836048/multiple-font-sizes-in-plot-title) – Ynjxsjmh Jun 29 '22 at 16:17
  • fig.suptitle('Global Title\nGlobal Subtitle.', fontsize=7) – inquirer Jun 30 '22 at 10:58

0 Answers0