728x90
[Python Example Codes]
Matplotlib: Horizontal Bar Chart(수평 막대그래프) 데이터 시각화 #01
포스트 난이도: HOO_Middle
# Example Codes
import matplotlib.pyplot as plt
import numpy as np
fig, ax = plt.subplots()
harborName = ('Gageodo Harbor', 'Gampo Harbor', 'Gangneung Harbor', 'Geojin Harbor', 'Gyeokpo Harbor')
y_hd = np.arange(len(harborName))
values = [5, 5, 5, 5, 5]
error = 1
ax.barh(y_hd, values, xerr=error, align='center')
ax.set_yticks(y_hd, labels=harborName)
ax.invert_yaxis()
ax.set_xlabel('Data')
ax.set_title('The Number of Harbor Data')
plt.show()
# Results
# 데이터 자료 출처
국가어항 지역경제 정보, 해양수산빅데이터 거래소
https://www.bigdata-sea.kr/datasearch/base/view.do?prodId=PROD_000087
# Github Link
https://github.com/WhoisHOO/HOOAI/blob/main/PEC_HBC_01_212
728x90
'Python > Python Examples' 카테고리의 다른 글
[Python Examples] sorted(), sorted(x, reverse) (0) | 2022.03.17 |
---|---|
[Python Examples] divmod()을 사용하여 몫, 나머지 구하기 (0) | 2022.03.15 |
[Python Example Codes] Matplotlib pyplot: plt.subplots() | x값만 활용한 그래프 생성 (0) | 2021.12.14 |
[Python Example Codes] Pyplot: Single Axes 구현, 단일 그래프 (0) | 2021.12.12 |
[Python Example Codes] Matplotlib 이름 바꾸기(윈도우 이름 | 타이틀 이름 | X축 이름 | Y축 이름) (0) | 2021.12.07 |
댓글