Answers for "python use inner join to add column from one dataframe to another"

4

merge dataframe pandas

>>> df1.merge(df2, left_on='lkey', right_on='rkey')
  lkey  value_x rkey  value_y
0  foo        1  foo        5
1  foo        1  foo        8
2  foo        5  foo        5
3  foo        5  foo        8
4  bar        2  bar        6
5  baz        3  baz        7
Posted by: Guest on October-11-2020
2

concact geodataframe python

>>> s1 = pd.Series(['a', 'b'])
>>> s2 = pd.Series(['c', 'd'])
>>> pd.concat([s1, s2])
0    a
1    b
0    c
1    d
dtype: object
Posted by: Guest on October-26-2020

Code answers related to "python use inner join to add column from one dataframe to another"

Python Answers by Framework

Browse Popular Code Answers by Language