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
Copy file name to clipboardExpand all lines: doc/source/text.rst
+3-3
Original file line number
Diff line number
Diff line change
@@ -266,8 +266,8 @@ Concatenating a Series and an indexed object into a Series, with alignment
266
266
267
267
.. versionadded:: 0.23.0
268
268
269
-
For concatenation with a ``Series`` or ``DataFrame``, it is possible to align the respective indexes before concatenation by setting
270
-
the ``join``-keyword, which controls the manner of alignment.
269
+
For concatenation with a ``Series`` or ``DataFrame``, it is possible to align the indexes before concatenation by setting
270
+
the ``join``-keyword.
271
271
272
272
.. ipython:: python
273
273
@@ -282,7 +282,7 @@ the ``join``-keyword, which controls the manner of alignment.
282
282
If the ``join`` keyword is not passed, the method :meth:`~Series.str.cat` will currently fall back to the behavior before version 0.23.0 (i.e. no alignment),
283
283
but a ``FutureWarning`` will be raised if any of the involved indexes differ, since this default will change to ``join='left'`` in a future version.
284
284
285
-
To usual options are available for ``join`` (one of ``'left', 'outer', 'inner', 'right'``).
285
+
The usual options are available for ``join`` (one of ``'left', 'outer', 'inner', 'right'``).
286
286
In particular, alignment also means that the different lengths do not need to coincide anymore.
0 commit comments