matplotlib에서 특정 서브플롯을 선택하려면 다음 단계를 수행할 수 있습니다. -
-
Figure 크기를 설정하고 서브플롯 사이와 주변의 패딩을 조정합니다.
-
Figure()를 사용하여 새 Figure를 생성하거나 기존 Figure를 활성화합니다. 방법.
-
범위, 즉 배치할 서브플롯의 수를 반복합니다.
-
루프 자체에서 '~.axes.Axes'를 추가합니다. add_subplot()을 사용하여 서브플롯 배열의 일부로 그림에 방법.
-
이제 빨간색으로 표시된 축 플롯 라인을 선택합니다.
-
그림을 표시하려면 show()를 사용하세요. 방법.
예시
import numpy as np import matplotlib.pyplot as plt plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True fig = plt.figure() for index in [1, 2, 3, 4]: ax = fig.add_subplot(1, 4, index) ax.plot(np.random.rand(5), np.random.rand(5)) ax = fig.add_subplot(1, 4, 2) ax.plot(np.random.rand(5), np.random.rand(5), color='red') plt.show()
출력