Pandas

[Pandas / 기초] 판다스 데이터병합 - concat, merge

씨주 2024. 1. 11. 16:06

📍 데이터병합

✅ concat()

: pd.concat([df1, df2], axis, join, ignore_index=True/False)

  • axis : 0(default값) 행방향 / 1 열방향 결합
  • join : 'inner' / 'outer'(default값)
  • ignore_index=True : index 초기화

 

: 이름이 같은 column이 여러개 있는 경우

  이름이 같아도 키가 되면 안되는 열이 있을 때 on 인수로 기준열을 명시

  pd.merge(df1, df2, on='column')