-
Juypter-data2Cording/Python 2021. 1. 20. 22:58
import pandas as pd
df = pd.read_csv('age.csv', encoding='cp949', index_col=0)
df = df.div(df['총인구수'], axis = 0)
del df['총인구수'], df['연령구간인구수']
df.head()
name = input('원하는 지역의 이름을 입력해주세요 : ')
a = df.index.str.contains(name)
df2 = df[a]
df2
# 데이터를 그래프로 그리기 위해 행과 열을 바꾸고 plot() 함수 실행
import matplotlib.pyplot as plt
plt.rc('font', family='Malgun Gothic')
df2.T.plot()
plt.show()
'Cording > Python' 카테고리의 다른 글
Graph (0) 2021.01.22 jupyter-data visualization (0) 2021.01.21 Juypter-계산 (0) 2021.01.20 Jupyter-html table (0) 2021.01.19 Jupyter-data, csv (0) 2021.01.17