메모
전체 예제 코드를 다운로드 하려면 여기 를 클릭 하십시오.
# 이 있는 컬러바AxesDivider
이 axes_divider.make_axes_locatable
함수는 기존 축을 가져와 새 축에 추가하고 를 AxesDivider
반환합니다 AxesDivider
. 그런 다음 의 append_axes
메서드를 AxesDivider
사용하여 원래 축의 지정된 측면("위", "오른쪽", "아래" 또는 "왼쪽")에 새 축을 만들 수 있습니다. 이 예제는 append_axes
를 사용하여 축 옆에 컬러바를 추가합니다.
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()