If I have 2 lists or data frame (pandas) in python how do I merge / match / join them?
For example:
List / DF 1:
Table_Name Table_Alias
tab_1 t1
tab_2 t2
tab_3 t3
List / DF 2:
Table_Alias Variable_Name
t1 Owner
t1 Owner_Id
t2 Purchase_date
t3 Maintenance_cost
Desired Result:
Table_Name Table_Alias Variable_Name
tab_1 t1 Owner
tab_1 t1 Owner_Id
tab_2 t2 Purchase_date
tab_3 t3 Maintenance_cost
NOTE : If I was doing this in R, I'd use something like:
df3 <- merge(df1, df2, by = 'Table_Alias', all.y = T)
What's the best way to do this in python?