Es gibt mehrere Möglichkeiten, dies zu tun. Der einfachste Weg ist die y-Etiketten und Titel der Handlung ausnutzt, und dann fig.tight_layout()
Raum für die Etiketten zu machen verwenden. Alternativ können Sie mit annotate
Ergänzungstext an der richtigen Stelle platzieren und dann machen Zimmer-manuell.
Wenn Sie auf Ihren Achsen y-Etikett nicht haben, ist es einfach, den Titel und die y-Label der ersten Zeile und Spalte der Achsen zu nutzen.
import matplotlib.pyplot as plt
cols = ['Column {}'.format(col) for col in range(1, 4)]
rows = ['Row {}'.format(row) for row in ['A', 'B', 'C', 'D']]
fig, axes = plt.subplots(nrows=4, ncols=3, figsize=(12, 8))
for ax, col in zip(axes[0], cols):
ax.set_title(col)
for ax, row in zip(axes[:,0], rows):
ax.set_ylabel(row, rotation=0, size='large')
fig.tight_layout()
plt.show()
Wenn Sie y-Etiketten zu tun haben, oder wenn Sie ein bisschen mehr Flexibilität wünschen, können Sie annotate
verwenden, um die Etiketten zu platzieren. Dies ist komplizierter, aber Sie können neben den Zeilen- und Spaltenbeschriftungen auch einzelne Plottitel, Ylabels usw. verwenden.
import matplotlib.pyplot as plt
from matplotlib.transforms import offset_copy
cols = ['Column {}'.format(col) for col in range(1, 4)]
rows = ['Row {}'.format(row) for row in ['A', 'B', 'C', 'D']]
fig, axes = plt.subplots(nrows=4, ncols=3, figsize=(12, 8))
plt.setp(axes.flat, xlabel='X-label', ylabel='Y-label')
pad = 5 # in points
for ax, col in zip(axes[0], cols):
ax.annotate(col, xy=(0.5, 1), xytext=(0, pad),
xycoords='axes fraction', textcoords='offset points',
size='large', ha='center', va='baseline')
for ax, row in zip(axes[:,0], rows):
ax.annotate(row, xy=(0, 0.5), xytext=(-ax.yaxis.labelpad - pad, 0),
xycoords=ax.yaxis.label, textcoords='offset points',
size='large', ha='right', va='center')
fig.tight_layout()
# tight_layout doesn't take these labels into account. We'll need
# to make some room. These numbers are are manually tweaked.
# You could automatically calculate them, but it's a pain.
fig.subplots_adjust(left=0.15, top=0.95)
plt.show()
Die Methoden 'is_first_col()', 'is_last_col()', 'is_first_row()' und 'is_last_row()' kann auch in diesem Zusammenhang nützlich sein. – gerrit