Posts by Alfredo Holz Junior • 11 points
1 post
-
1
votes1
answer407
viewsA: Joining two frames by axes
Opa... i use pd.merge, if the columns in the two dataframes are the same I use "on". import pandas as pd pd.merge(df_1,df_2,on='data') if the names are different use "left_on" and "right_on", ex:…