Notiz
Klicken Sie hier , um den vollständigen Beispielcode herunterzuladen
Etiketten ausrichten #
Ausrichten von xlabel und ylabel mit Figure.align_xlabels
und
Figure.align_ylabels
Figure.align_labels
umschließt diese beiden Funktionen.
Beachten Sie, dass das xlabel "XLabel1 1" normalerweise viel näher an der x-Achse und "YLabel1 0" viel näher an der y-Achse ihrer jeweiligen Achsen liegen würde.
import matplotlib.pyplot as plt
import numpy as np
import matplotlib.gridspec as gridspec
fig = plt.figure(tight_layout=True)
gs = gridspec.GridSpec(2, 2)
ax = fig.add_subplot(gs[0, :])
ax.plot(np.arange(0, 1e6, 1000))
ax.set_ylabel('YLabel0')
ax.set_xlabel('XLabel0')
for i in range(2):
ax = fig.add_subplot(gs[1, i])
ax.plot(np.arange(1., 0., -0.1) * 2000., np.arange(1., 0., -0.1))
ax.set_ylabel('YLabel1 %d' % i)
ax.set_xlabel('XLabel1 %d' % i)
if i == 0:
ax.tick_params(axis='x', rotation=55)
fig.align_labels() # same as fig.align_xlabels(); fig.align_ylabels()
plt.show()