join two dataframe columns code example
Example 1: pandas merge multiple dataframes
import pandas as pd
from functools import reduce
# compile the list of dataframes you want to merge
data_frames = [df1, df2, df3]
df_merged = reduce(lambda left,right: pd.merge(left,right,on=['key_col'],
how='outer'), data_frames)
Example 2: pandas merge two columns from different dataframes
#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')