어린이 보호구역과 노인보호구역의 예산을 비교했다. 데이터는 서울시 예산사이트를 이용하였다.
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
df = pd.read_csv('../data/예산/예산.csv',index_col=0)
df = df.T
df['어린이 예산'] = df['어린이 예산'].astype('int')
df['노인 예산'] = df['노인 예산'].astype('int')
plt.rcParams["figure.figsize"] = (15, 9)
plt.rcParams['font.size'] = 12
ax = df.plot.bar(y=['노인 예산','어린이 예산'],rot=0,color=['lavender','plum'],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.xlabel('년도', size=15)
plt.ylabel('금액(천원)', size=15)
plt.title('노인, 어린이 예산', size = 20)
plt.show()