Skip to content

Commit 847bf59

Browse files
committed
DOC: added references to argmin/argmin API changes to release notes/v0.13.0 relating to GH6214
1 parent 3409e71 commit 847bf59

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

doc/source/release.rst

+3-1
Original file line numberDiff line numberDiff line change
@@ -554,7 +554,9 @@ API Changes
554554
na values (:issue:`5521`)
555555
- The refactoring involving``Series`` deriving from ``NDFrame`` breaks ``rpy2<=2.3.8``. an Issue
556556
has been opened against rpy2 and a workaround is detailed in :issue:`5698`. Thanks @JanSchulz.
557-
557+
- ``Series.argmin`` and ``Series.argmax`` are now aliased to ``Series.idxmin`` and ``Series.idxmax``.
558+
These return the *index* of the min or max element respectively. Prior to 0.13.0 these would return
559+
the position of the min / max element (:issue:`6214`)
558560

559561
Internal Refactoring
560562
~~~~~~~~~~~~~~~~~~~~

doc/source/v0.13.0.txt

+3
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,9 @@ API changes
171171
- ``Panel.reindex`` has the following call signature ``Panel.reindex(items=None, major_axis=None, minor_axis=None, **kwargs)``
172172
to conform with other ``NDFrame`` objects. See :ref:`Internal Refactoring<whatsnew_0130.refactoring>` for more information.
173173

174+
- ``Series.argmin`` and ``Series.argmax`` are now aliased to ``Series.idxmin`` and ``Series.idxmax``. These return the *index* of the
175+
min or max element respectively. Prior to 0.13.0 these would return the position of the min / max element. (:issue:`6214`)
176+
174177
Prior Version Deprecations/Changes
175178
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
176179

0 commit comments

Comments
 (0)