From 31c167ddcd5b4ac7526c28d26ca62f6d1954b6c9 Mon Sep 17 00:00:00 2001 From: lexual Date: Sat, 12 Jul 2014 20:25:54 +1000 Subject: [PATCH] Specify in docs that join='outer' is the defaul for align method. --- doc/source/basics.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/basics.rst b/doc/source/basics.rst index ec8456089f452..4d67616c5cd60 100644 --- a/doc/source/basics.rst +++ b/doc/source/basics.rst @@ -869,7 +869,7 @@ Aligning objects with each other with ``align`` The ``align`` method is the fastest way to simultaneously align two objects. It supports a ``join`` argument (related to :ref:`joining and merging `): - - ``join='outer'``: take the union of the indexes + - ``join='outer'``: take the union of the indexes (default) - ``join='left'``: use the calling object's index - ``join='right'``: use the passed object's index - ``join='inner'``: intersect the indexes