pandas inner join example
Example 1: joins in pandas
pd.merge(product,customer,left_on='Product_name',right_on='Purchased_Product')
Example 2: merge two df
bigdata = pd.concat([data1, data2], ignore_index=True, sort=False)
pd.merge(product,customer,left_on='Product_name',right_on='Purchased_Product')
bigdata = pd.concat([data1, data2], ignore_index=True, sort=False)