PANDAS GABUNGI DUA KOLOM DARI DATRAME BERBEDA
#suppose you have two dataframes df1 and df2, and
#you need to merge them along the column id
df_merge_col = pd.merge(df1, df2, on='id')
Captainspockears