본문 바로가기
Python/Python Examples

[Python Examples] matplotlib.pyplot 기본 코드 예제

by Henry Cho 2022. 11. 20.
728x90

matplotlib.pyplot 기본 코드 예제

포스트 난이도: HOO_Junior


# matplotlib.pyplot

 

matplotlib는 통계 데이터를 그래픽으로 시각화할 수 있는 라이브러리이다. 한마디로 다양한 plot, 그래프들을 만들어낼 수 있다. 그중에서도 기본적으로 많이 사용되는 pyplot를 사용할 수 있는 기본 코드를 이번 예제를 통해서 살펴볼 수 있다. 이번 예제에서 Pyplot에 사용되는 기능은 아래와 같다.

  • plt.plot()
  • plt.xlabel()
  • plt.ylabel()
  • plt.grid()
  • plt.title()

# Example code of the Pyplot

 

import numpy as np
import matplotlib.pyplot as plt

R = 0.078;
N = 5;
V = 4;

T1 = np.arange(200,500,100)
P = N * R *T1 /V

plt.plot(T1,P)
plt.xlabel('Label X')
plt.ylabel('Label Y')

plt.grid();
plt.title('HOOAI')


 

728x90

댓글