Pandas 또는 Matplotlib에서 하나의 그래프에 여러 상자 그림을 그리기 위해 다음 단계를 수행할 수 있습니다. -
단계
-
Figure 크기를 설정하고 서브플롯 사이와 주변의 패딩을 조정합니다.
-
두 개의 열이 있는 Pandas 데이터 프레임을 만듭니다.
-
plot()을 사용하여 데이터 프레임을 플로팅합니다. 메소드, kind='boxplot' 사용 .
-
그림을 표시하려면 show()를 사용하세요. 방법.
예시
import pandas as pd import numpy as np from matplotlib import pyplot as plt # Set the figure size plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True # Pandas dataframe data = pd.DataFrame({"Box1": np.random.rand(10), "Box2": np.random.rand(10)}) # Plot the dataframe ax = data[['Box1', 'Box2']].plot(kind='box', title='boxplot') # Display the plot plt.show()
출력
다음 출력을 생성합니다 -