From 673b4c97f8b230dd728f366a2394c1764be11559 Mon Sep 17 00:00:00 2001 From: SplashDance Date: Thu, 3 Apr 2014 07:45:06 -0400 Subject: [PATCH] DOC: Issue #6763 - Corrected MERGE example --- pandas/core/frame.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pandas/core/frame.py b/pandas/core/frame.py index 3329483a61f5c..8a30b74575ec2 100755 --- a/pandas/core/frame.py +++ b/pandas/core/frame.py @@ -123,11 +123,11 @@ >>> merge(A, B, left_on='lkey', right_on='rkey', how='outer') lkey value_x rkey value_y -0 bar 2 bar 6 -1 bar 2 bar 8 -2 baz 3 NaN NaN -3 foo 1 foo 5 -4 foo 4 foo 5 +0 foo 1 foo 5 +1 foo 4 foo 5 +2 bar 2 bar 6 +3 bar 2 bar 8 +4 baz 3 NaN NaN 5 NaN NaN qux 7 Returns