import matplotlib.pyplot as plt
import numpy as np
# 선그래프
plt.plot([1,2,3,4])
plt.xlabel('x-axis')
plt.ylabel('y-axis')
plt.show()
# 선모양
x = np.arange(0., 10., 0.3) # 0에서 10미만 0.3 증가
y = x**2 # x의 2 제곱
line = plt.plot(x, y)
plt.setp(line, color='r', linewidth=3.0) # 선모양
plt.show()
'Python' 카테고리의 다른 글
[python] schedule 을 이용한 프로그램 시작 종료 (2) | 2023.05.19 |
---|---|
[Python] time datetime 을 이용한 시간(datetime) 출력 (0) | 2023.04.04 |
[python] Numpy 를 이용한 1~10까지 더하기 : 누적합(Cumulative Sum) (0) | 2021.11.10 |
[Python] 함수 만들기 (0) | 2021.11.03 |
[python] 시작일, 종료일까지 반복(date Loop) (0) | 2021.08.05 |