반응형
출처: http://chrisalbon.com/python/pandas_join_merge_dataframe.html
Pandas에서 두 Dataframe을 합치기 위해서는
pd.merge(df1, df2, on="user_name", how="inner") |
사용해보니 SQL에 inner join과 같아서 좋음
반응형
출처: http://chrisalbon.com/python/pandas_join_merge_dataframe.html
Pandas에서 두 Dataframe을 합치기 위해서는
pd.merge(df1, df2, on="user_name", how="inner") |
사용해보니 SQL에 inner join과 같아서 좋음