3. Line Plot
1
2
3
4
5
| # 기본 셋팅
import matplotlib.pyplot as plt
import pandas as pd
import numpy as np
plt.rcParams["figure.figsize"] = (12, 9)
|
3-1. 기본 lineplot 그리기
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| # 데이터 생성
x = np.arange(0, 10, 0.1)
y = 1 + np.sin(x) # sine 값으로 생성
# 데이터 입력
plt.plot(x, y)
# label & Title 설정
plt.xlabel('x value', fontsize=15)
plt.ylabel('y value', fontsize=15)
plt.title('sin graph', fontsize=18)
# grid 표시
plt.grid()
plt.show()
|

3-2. 하나의 canvas에 2개 이상의 그래프 그리기
-
color: 컬러 옵션
-
alpha: 투명도 옵션
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| # 데이터 생성
x = np.arange(0, 10, 0.1)
y_1 = 1 + np.sin(x) #sine값
y_2 = 1 + np.cos(x) #cosine 값
# plot에 데이터 각각 입력
plt.plot(x, y_1, label='1+sin', color='blue', alpha=0.3) #plot1
plt.plot(x, y_2, label='1+cos', color='red', alpha=0.7) # plot2
# label & Title 설정
plt.xlabel('x value', fontsize=15)
plt.ylabel('y value', fontsize=15)
plt.title('sin and cos graph', fontsize=18)
# Grid & Legend 표시
plt.grid()
plt.legend()
# 시각화
plt.show()
|

3-3. 마커 스타일링
Type |
Describe |
Type |
Describe |
|—|——–|—|——–|
’ . ‘ |
point marker |
’ , ‘ |
pixel marker |
’ o ‘ |
circle marker |
’ v ‘ |
triangle_down marker |
’ ^ ‘ |
triangle_up marker |
’ < ‘ |
triangle_left marker |
’ > ‘ |
triangle_right marker |
’ 1 ‘ |
tri_down marker |
’ 2 ‘ |
tri_up marker |
’ 3 ‘ |
tri_left marker |
’ 4 ‘ |
tri_right marker |
’ s ‘ |
square marker |
’ p ‘ |
pentagon marker |
’ * ‘ |
star marker |
’ h ‘ |
hexagon1 marker |
’ H ‘ |
hexagon2 marker |
’ + ‘ |
plus marker |
’ x ‘ |
x marker |
’ D ‘ |
diamond marker |
’ d ‘ |
thin_diamond marker |
‘|’ |
vline marker |
‘_’ |
hline marker |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| # 데이터 생성
x = np.arange(0, 10, 0.1)
y_1 = 1 + np.sin(x)
y_2 = 1 + np.cos(x)
# 데이터 입력 & 마커 설정
plt.plot(x, y_1, label='1+sin', color='blue', alpha=0.3, marker='o')
plt.plot(x, y_2, label='1+cos', color='red', alpha=0.7, marker='+')
# label & Title 설정
plt.xlabel('x value', fontsize=15)
plt.ylabel('y value', fontsize=15)
plt.title('sin and cos graph', fontsize=18)
# Grid & Legend 설정
plt.grid()
plt.legend()
# 시각화
plt.show()
|

3-4 라인 스타일 변경하기
Type |
Describe |
Type |
Describe |
’-‘ |
solid line style |
’–’ |
dashed line style |
’-.’ |
dash-dot line style |
’:’ |
dotted line style |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| # 데이터 생성
x = np.arange(0, 10, 0.1)
y_1 = 1 + np.sin(x)
y_2 = 1 + np.cos(x)
# 데이터 입력, 마커 & linestyle 설정
plt.plot(x, y_1, label='1+sin', color='blue', linestyle=':')
plt.plot(x, y_2, label='1+cos', color='red', linestyle='-.')
# label & Title 설정
plt.xlabel('x value', fontsize=15)
plt.ylabel('y value', fontsize=15)
plt.title('sin and cos graph', fontsize=18)
# Grid & Legend 표시
plt.grid()
plt.legend()
# 시각화
plt.show()
|

4. Areaplot (Filled Area)
1
2
3
| # 데이터 생성
y = np.random.randint(low=5, high=10, size=20)
y
|
array([7, 5, 8, 6, 5, 8, 8, 8, 6, 6, 5, 6, 8, 6, 9, 9, 5, 6, 7, 9])
4-1. 기본 areaplot 그리기
plt.fill_between(x,y, color=’색상’, alpha= 투명도값)
1
2
3
4
5
6
7
8
9
10
11
| # 데이터 생성
x = np.arange(1,21)
# 5 ~ 10 사이의 수를 20개로 쪼개서 데이터 생성 (데이터는 int 형)
y = np.random.randint(low=5, high=10, size=20)
# fill_between으로 색칠
plt.fill_between(x, y, color="green", alpha=0.6)
# 시각화
plt.show()
|

4-2. 경계선을 굵게 그리고 area는 옅게 그리는 효과 적용
1
2
| plt.fill_between( x, y, color="green", alpha=0.3)
plt.plot(x, y, color="green", alpha=0.8)
|
[<matplotlib.lines.Line2D at 0x11d325206d0>]

4-3. 여러 그래프를 겹쳐서 표현
-
여러개의 plot의 alpha값을 서로 다르게 주는 것이 포인트
-
어차피 겹치는 부분은 진해지기 때문에 겹치지 않는 부분에서의 구분을 명확하게 하기 위해 alpha값을 다르게 하는게 좋다.
-
이때 alpha값은 연하게 하는 것이 좋다. (겹치면 진해지기 때문)
1
2
3
4
5
6
7
8
9
10
| # 데이터 생성
x = np.arange(1, 10, 0.05)
y_1 = np.cos(x)+1
y_2 = np.sin(x)+1
y_3 = y_1 * y_2 / np.pi
# 하나의 canvas에 여러개의 그래프 그리기
plt.fill_between(x, y_1, color="green", alpha=0.1)
plt.fill_between(x, y_2, color="blue", alpha=0.2)
plt.fill_between(x, y_3, color="red", alpha=0.3)
|
<matplotlib.collections.PolyCollection at 0x11d320ccc70>

References
Matplotlib Document
댓글남기기