tmp[("인구수","남자")]["속초시] # 컬럼이 멀티인덱스일 때
딕셔너리 형태로 인덱스(index={:})나 컬럼(columns={:})의 이름을 바꿀 수 있다.
population.rename( columns={ "행정구역(동읍면)별(1)": "광역시도", "행정구역(동읍면)별(2)": "시도", "계":"인구수"}, inplace=True )
pivot_table을 하면 컬럼이나 인덱스가 멀티가 되는 경우가 많기 때문에 이것을 다루기 위해 필요하다.
pop[pop.index.get_level_values(1)=='삼척시']
또는 pd.loc[index, col_name]
tmp.loc[["강릉시"]] tmp.loc["강릉시"]
index를 지정하는 컬럼으로 설정.
tmp.set_index("시도",inplace=True)
pop = pd.merge(pop, draw_korea, how = "left", on="ID")