7
Come aggiungere un titolo alle sottotrame in Matplotlib?
Ho una figura che contiene molte sottotrame. fig = plt.figure(num=None, figsize=(26, 12), dpi=80, facecolor='w', edgecolor='k') fig.canvas.set_window_title('Window Title') # Returns the Axes instance ax = fig.add_subplot(311) ax2 = fig.add_subplot(312) ax3 = fig.add_subplot(313) Come faccio ad aggiungere titoli alle sottotrame? fig.suptitleaggiunge un titolo a tutti i grafici e sebbene ax.set_title()esista, quest'ultimo non …
225
python
matplotlib
plot
subtitle