서브플롯 간격 및 여백 #

를 사용하여 여백과 서브플롯의 간격을 조정합니다 pyplot.subplots_adjust.

메모

또한 표시된 그림의 여백과 간격을 대화식으로 조정할 수 있는 도구 창이 있습니다. 도구 모음을 통하거나 를 호출하여 열 수 있습니다 pyplot.subplot_tool.

서브 플롯 조정
import matplotlib.pyplot as plt
import numpy as np

# Fixing random state for reproducibility
np.random.seed(19680801)

plt.subplot(211)
plt.imshow(np.random.random((100, 100)))
plt.subplot(212)
plt.imshow(np.random.random((100, 100)))

plt.subplots_adjust(bottom=0.1, right=0.8, top=0.9)
cax = plt.axes([0.85, 0.1, 0.075, 0.8])
plt.colorbar(cax=cax)

plt.show()

Sphinx-Gallery에서 생성한 갤러리