7
Wie füge ich Unterplots in Matplotlib Titel hinzu?
Ich habe eine Figur, die viele Nebenhandlungen enthält. 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) Wie füge ich den Nebenhandlungen Titel hinzu? fig.suptitleFügt allen Diagrammen einen Titel hinzu, und obwohl ax.set_title()vorhanden, fügt letzterer …
225
python
matplotlib
plot
subtitle