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
'Python > Python Examples' 카테고리의 다른 글
[Python Examples] 서로 다른 배열 더하기: np.array() 와 array 차이점 (0) | 2022.12.12 |
---|---|
[Python Examples] 파이썬 while문 예제: while, if, elif, else (0) | 2022.11.20 |
[Python Examples] 95% Confidence Interval, 99% Confidence Interval 예제 (0) | 2022.11.19 |
[Python Examples] type(): 데이터 타입 출력해서 나타내기 (0) | 2022.11.01 |
[Python Examples] pd.DataFrame(): Section별 학생 구분하여 출력하기 (0) | 2022.10.28 |
댓글