강의

멘토링

커뮤니티

Inflearn Community Q&A

mbc48057864's profile image
mbc48057864

asked

Spatial Analysis Using Python Modules

3-7. Importance of visualization and normalization of other statistics, pattern analysis

geo_data, merged_data와 매칭은 key_on에 있는 properties.name 과 동일 해야 되는 거죠

Written on

·

261

0

m.choropleth(geo_data=seoul_geo,
             data=merged_data.groupby('구')[f'{N}월'].sum(),
             fill_color='YlOrRd', # 색상 변경도 가능하다
             fill_opacity=0.9,
             line_opacity=0.2,
             key_on='properties.name',
             legend_name=f'{N}월 승하차 인원', 
            )
m
GISfolium

Answer

This question is waiting for answers
Be the first to answer!
mbc48057864's profile image
mbc48057864

asked

Ask a question