178903/how-merge-data-frames-based-particular-column-pandas-python
I want to merge two data frames:
df1
company,standard tata,A1 cts,A2 dell,A3
df2
company,return tata,71 dell,78 cts,27 hcl,23
I want the output to be like:
company,standard,return tata,A1,71 cts,A2,27 dell,A3,78
Can someone help me do this?
1. I have a folder with multiple ...READ MORE
Actually in later versions of pandas this ...READ MORE
Hi@akhtar, You can use Pandas.merge() function to merge ...READ MORE
Firstly we will import pandas to read ...READ MORE
You probably want to use np.ravel_multi_index: import numpy as ...READ MORE