Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

Matplotlib의 axes.flat은 무엇을 합니까?

<시간/>

Axes.flat 1D 반복자를 의미합니다. 어레이를 통해. 예를 들어 axes.flat를 사용하는 방법을 살펴보겠습니다. .

단계

  • Figure 크기를 설정하고 서브플롯 사이와 주변의 패딩을 조정합니다.

  • subplots()를 사용하여 Figure와 서브플롯 세트 생성 방법.

  • x 만들기 및 y numpy를 사용하는 데이터 포인트.

  • axes.flat 사용 모든 축을 반복합니다(2단계).

  • plot()을 사용하여 x 및 y 데이터 포인트를 플로팅합니다. 방법.

  • 그림을 표시하려면 show()를 사용하세요. 방법.

예시

 matplotlib에서 np로 numpy 가져오기 pltplt.rcParams["Figure.figsize"] =[7.50, 3.50]plt.rcParams["Figure.autolayout"] =Truefig, 축 =plt.subplots(nrows=2, ncols=3)x =np.random.rand(10)y =np.random.rand(10) for _, ax in enumerate(axes.flat):ax.plot(x, y)plt.show() 

출력

Matplotlib의 axes.flat은 무엇을 합니까?