We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82f54bd commit 633c7ffCopy full SHA for 633c7ff
doc/source/10min.rst
@@ -483,6 +483,17 @@ SQL style merges. See the :ref:`Database style joining <merging.join>`
483
right
484
pd.merge(left, right, on='key')
485
486
+Another example that can be given is:
487
+
488
+.. ipython:: python
489
490
+ left = pd.DataFrame({'key': ['foo', 'bar'], 'lval': [1, 2]})
491
+ right = pd.DataFrame({'key': ['foo', 'bar'], 'rval': [4, 5]})
492
+ left
493
+ right
494
+ pd.merge(left, right, on='key')
495
496
497
Append
498
~~~~~~
499
0 commit comments