Skip to content

Commit 673b4c9

Browse files
committed
DOC: Issue #6763 - Corrected MERGE example
1 parent 70de129 commit 673b4c9

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

pandas/core/frame.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -123,11 +123,11 @@
123123
124124
>>> merge(A, B, left_on='lkey', right_on='rkey', how='outer')
125125
lkey value_x rkey value_y
126-
0 bar 2 bar 6
127-
1 bar 2 bar 8
128-
2 baz 3 NaN NaN
129-
3 foo 1 foo 5
130-
4 foo 4 foo 5
126+
0 foo 1 foo 5
127+
1 foo 4 foo 5
128+
2 bar 2 bar 6
129+
3 bar 2 bar 8
130+
4 baz 3 NaN NaN
131131
5 NaN NaN qux 7
132132
133133
Returns

0 commit comments

Comments
 (0)