Notiz
Klicken Sie hier , um den vollständigen Beispielcode herunterzuladen
Farbbalken mit #AxesDivider
Die axes_divider.make_axes_locatable
Funktion nimmt eine vorhandene Achse, fügt sie einer neuen hinzu AxesDivider
und gibt die AxesDivider
. Die append_axes
Methode von AxesDivider
kann dann verwendet werden, um eine neue Achse auf einer bestimmten Seite ("oben", "rechts", "unten" oder "links") der ursprünglichen Achsen zu erstellen. In diesem Beispiel werden append_axes
Farbbalken neben Achsen hinzugefügt.
import matplotlib.pyplot as plt
from mpl_toolkits.axes_grid1.axes_divider import make_axes_locatable
fig, (ax1, ax2) = plt.subplots(1, 2)
fig.subplots_adjust(wspace=0.5)
im1 = ax1.imshow([[1, 2], [3, 4]])
ax1_divider = make_axes_locatable(ax1)
# Add an Axes to the right of the main Axes.
cax1 = ax1_divider.append_axes("right", size="7%", pad="2%")
cb1 = fig.colorbar(im1, cax=cax1)
im2 = ax2.imshow([[1, 2], [3, 4]])
ax2_divider = make_axes_locatable(ax2)
# Add an Axes above the main Axes.
cax2 = ax2_divider.append_axes("top", size="7%", pad="2%")
cb2 = fig.colorbar(im2, cax=cax2, orientation="horizontal")
# Change tick position to top (with the default tick position "bottom", ticks
# overlap the image).
cax2.xaxis.set_ticks_position("top")
plt.show()