연도별 어린이 보행자 사고건수를 보기위해 TASS 교통사고 분석 시스템에서 데이터를 받아왔다.
import pandas as pd
import matplotlib.pyplot as plt
from matplotlib import font_manager, rc
import matplotlib
import platform
if platform.system() == 'Windows':
matplotlib.rc('font', family='Malgun Gothic')
#Malgun
%matplotlib inline
df1 = pd.read_csv('../data/어린이보호구역 사고수/어린이 보호구역 사고(2005~2020).csv')
df1.head()
all = df1.iloc[11:16]
all
all = all.astype({'년도':'int64','사고합계':'int'})
all.set_index('년도', inplace=True)
plt.rcParams["figure.figsize"] = (14,7)
plt.rcParams['font.size'] = 12
ax = all.plot.bar(y=['사고합계'],rot=0,color=['r','c','b','g','y'],width=0.8)
for temp in ax.patches:
ax.annotate('%d'%temp.get_height(),(temp.get_x()+temp.get_width()/2 , temp.get_height()) , ha = 'center' , va='bottom',fontsize=13)
plt.title('어린이보호구역 사고')
plt.show()
연도별 어린이 사고 건수(http://taas.koroad.or.kr/web/shp/sbm/initUnityAnalsSys.do?menuId=WEB_KMP_OVT_UAS)