다중 플롯 레이아웃에 대한 matplotlib/seaborn 서브플롯 사이의 공간을 조정하려면 다음 단계를 수행할 수 있습니다.
단계
-
Figure 크기를 설정하고 서브플롯 사이와 주변의 패딩을 조정합니다.
-
Figure와 서브플롯 세트를 생성합니다.
-
서브플롯 레이아웃 매개변수를 조정합니다.
-
모든 하위 플롯에 대해 Seaborn의 상자 플롯을 만듭니다.
-
그림을 표시하려면 Show()를 사용하세요. 방법.
예시
import seaborn as sns from matplotlib import pyplot as plt plt.rcParams["figure.figsize"] = [7.00, 3.50] plt.rcParams["figure.autolayout"] = True fig, axes = plt.subplots(2, 2) # Adjust the subplot layout parameters fig.subplots_adjust(hspace=0.125, wspace=0.125) # Create Seaborn boxplot for all the subplots sns.boxplot(ax=axes[0, 0]) sns.boxplot(ax=axes[0, 1]) sns.boxplot(ax=axes[1, 0]) sns.boxplot(ax=axes[1, 1]) # Display the plot plt.show()
출력
다음 출력을 생성합니다 -