0

I have two data-frames, df1, and df2. They both have address columns. I wish to create a df3 that contains information if the addresses from df1 and df2 match.

I tried this, but all it does is to add everything togather.

pd.concat([df1['address'], df2['address']], axis=1, keys=['df1', 'df2'])
Song Mei
  • 69
  • 6

0 Answers0