2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【Python】pandasで2つのテーブルをjoinする

Last updated at Posted at 2020-07-17

#何をしたいか
以下のテーブル2つをIDを基にして1つにしたい。
図1.png

#どうやるか

pd.merge(Table_A,Table_B,how="XXXX",on="ID")

how="XXXX"で結合方法を選択することができます。

##how="inner" (inner join)
2つのテーブルに共通するIDを抜き出し、結合します。
図2.png

pd.merge(Table_A,Table_B,how="inner",on="ID")

結果
図3.png

##how="outer" (outer join)
2つのテーブルのすべてのIDを抜き出し、結合します。

図4.png

pd.merge(Table_A,Table_B,how="outer",on="ID")

結果
図5.png

データが存在しないところはNaNとなっています。

##how="left" (left join)
左側のテーブルのIDのみ結合します。
図6.png

pd.merge(Table_A,Table_B,how="left",on="ID")

結果
図7.png

##how="right" (right join)
右側のテーブルのIDのみ結合します。
図8.png

pd.merge(Table_A,Table_B,how="right",on="ID")

図9.png

#おわり
ベン図で書いてる記事が少なかったので、なるべく全面に押し出しました。

2
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?