Answers for "python - match two df on a variable with different name"

0

python - match two df on a variable with different name

pd.merge(df1, df2, left_on=  ['userid', 'column1'],
                   right_on= ['username', 'column1'], 
                   how = 'left')
Posted by: Guest on December-10-2020

Code answers related to "python - match two df on a variable with different name"

Python Answers by Framework

Browse Popular Code Answers by Language