利用政府開放資料對台灣男女性癌症做關聯分析, 並練習畫雲林縣地圖。
Github:q8977452/taiwan_cancer_analysis
資料來源
使用技巧
- 合併資料
pd.merge(left=左邊DataFrame, right=右邊DataFrame, left_on=None, right_on=None) xxxx_on: 可以是列名、索引級名稱 how: inner: 交集(default) outer: 聯集
- 畫地圖
import geopandas as gpd town_shp = gpd.read_file('../data/map/TOWN_MOI_1091016.shp',encoding='utf-8') yunlin_town_shp=town_shp[town_shp['COUNTYNAME']=='雲林縣'] yunlin_town_shp.plot(cmap='RdBu')