Merge/Join pandas DataFrames
Reference¶
https://pandas.pydata.org/pandas-docs/stable/merging.html
http://stackoverflow.com/questions/22676081/pandas-the-difference-between-join-and-merge
Comment¶
You are able to specify (via
left_on
andright_on
) which columns to join in each data frame.Columns that appear in both data frames but not used in joining are distinguished using suffixes.