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

matplotlib와 matplotlib.pyplot 가져오기의 차이점은 무엇입니까?

<시간/>

matplotlib를 가져올 때 모든 라이브러리를 가져오는 반면 matplotlib.pyplot pyplot의 속성만 가져옵니다.

단계

  • matplotlib.pyplot 가져오기 플랫으로

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

  • numpy를 사용하여 x 및 y 데이터 포인트를 만듭니다.

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

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

예시

import numpy as np
import matplotlib.pyplot as plt

plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True

x = np.random.rand(10)
y = np.random.rand(10)

plt.plot(x, y)

plt.show()

출력

matplotlib와 matplotlib.pyplot 가져오기의 차이점은 무엇입니까?