GeoPandas の基本マッピング

Pythonで学ぶ米国センサスデータ分析

Lee Hachadoorian

Asst. Professor of Instruction, Temple University

地理空間データ — さらに学ぶ

Pythonで学ぶ米国センサスデータ分析

地理空間データの読み込み

import geopandas as gpd

# 地理空間ファイルを読み込む geo_state = gpd.read_file("state_computer_use.gpkg")
type(geo_state)
geopandas.geodataframe.GeoDataFrame
Pythonで学ぶ米国センサスデータ分析

GeoPandas のデータフレーム

print(geo_state.columns)
Index(['state', 'postal', 'name', 'geometry', 'total', 'has_computer',
       'desktop_laptop', 'desktop_laptop_only', 'portable_device',
       'portable_device_only', 'no_computer'],
      dtype='object')
Pythonで学ぶ米国センサスデータ分析

GeoPandas のデータフレーム

print(geo_state.head())
  state postal  ... portable_device_only no_computer
0    06     CA  ...              1052406     1263635
1    08     CO  ...               148749      168639
2    11     DC  ...                23554       32916
3    16     ID  ...                46565       67454
4    17     IL  ...               415840      640062

[5 rows x 11 columns]
Pythonで学ぶ米国センサスデータ分析

GeoPandas の geometry 列

print(geo_state["geometry"].head())
0    (POLYGON ((-1716661.572795197 -1091585.2669098...
1    (POLYGON ((-787764.8711845676 -679501.90042785...
2    (POLYGON ((1950824.825659711 -402441.066172522...
3    (POLYGON ((-1357254.591159301 77405.1771214068...
4    (POLYGON ((720437.1241238854 -496471.759394428...
Name: geometry, dtype: object
Pythonで学ぶ米国センサスデータ分析

GeoPandas のプロット

geo_state.plot()

アメリカ合衆国本土の地図。

Pythonで学ぶ米国センサスデータ分析

コロプレス地図

geo_state.plot(column = "has_computer")

アメリカ合衆国本土の地図。州はコンピュータ保有世帯数で色分け。

Pythonで学ぶ米国センサスデータ分析

コロプレス地図

geo_state.plot(column = "has_computer", cmap = "YlOrRd")

アメリカ合衆国本土の地図。州はコンピュータ保有世帯数で色分け。

Pythonで学ぶ米国センサスデータ分析

コロプレス地図

geo_state["pct_has_computer"] = 100 * geo_state["has_computer"]/geo_state["total"]

geo_state.plot(column = "pct_has_computer", cmap = "YlOrRd")

アメリカ合衆国本土の地図。州はコンピュータ保有世帯の割合で色分け。

Pythonで学ぶ米国センサスデータ分析

matplotlib の連続カラーマップ18種(明→暗のランプ)。

Matplotlib の連続カラーマップ

https://matplotlib.org/users/colormaps.html

Pythonで学ぶ米国センサスデータ分析

練習しましょう!

Pythonで学ぶ米国センサスデータ分析

Preparing Video For Download...