Skip to content

Commit

Permalink
removed notes section that was not applicable
Browse files Browse the repository at this point in the history
  • Loading branch information
jordan-d-murphy committed Feb 1, 2024
1 parent 514d8fc commit 420a336
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions pandas/core/groupby/generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -1074,12 +1074,6 @@ def idxmin(self, skipna: bool = True) -> Series:
Series.idxmax : Return index *label* of the first occurrence
of maximum of values.
Notes
-----
This method is the Series version of ``ndarray.argmin``. This method
returns the label of the minimum, while ``ndarray.argmin`` returns
the position. To get the position, use ``series.values.argmin()``.
Examples
--------
>>> ser = pd.Series([1, 2, 3, 4], index=pd.DatetimeIndex(
Expand Down Expand Up @@ -1130,12 +1124,6 @@ def idxmax(self, skipna: bool = True) -> Series:
Series.idxmin : Return index *label* of the first occurrence
of minimum of values.
Notes
-----
This method is the Series version of ``ndarray.argmax``. This method
returns the label of the maximum, while ``ndarray.argmax`` returns
the position. To get the position, use ``series.values.argmax()``.
Examples
--------
>>> ser = pd.Series([1, 2, 3, 4], index=pd.DatetimeIndex(
Expand Down

0 comments on commit 420a336

Please sign in to comment.