You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In [47]: x = DataFrame({'A' : list('aabb'), 'B' : [1,2,3,4]})
In [48]: x.merge(x, left_on=['A','B'], right_on=['A',x['B']], how='left')
TypeError: 'Series' does not have the buffer interface
In [49]: x.merge(x, left_on=['A','B'], right_on=['A','B'], how='left')
Out[49]:
A B
0 a 1
1 a 2
2 b 3
3 b 4
The text was updated successfully, but these errors were encountered:
Prob need a better example, but xref #2996
these should accept Series (and align)!
The text was updated successfully, but these errors were encountered: