Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

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')
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #pandas #merge #columns #dataframes
ADD COMMENT
Topic
Name
9+1 =