Skip to content

Commit 0a0372a

Browse files
authored
DOC: Fix groupby rendering in whatsnew (#50799)
1 parent 9349e61 commit 0a0372a

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

doc/source/whatsnew/v2.0.0.rst

+4-5
Original file line numberDiff line numberDiff line change
@@ -94,10 +94,9 @@ Copy-on-Write improvements
9494
was added to the following methods:
9595

9696
- :meth:`DataFrame.reset_index` / :meth:`Series.reset_index`
97-
- :meth:`DataFrame.set_index` / :meth:`Series.set_index`
97+
- :meth:`DataFrame.set_index`
9898
- :meth:`DataFrame.set_axis` / :meth:`Series.set_axis`
9999
- :meth:`DataFrame.rename_axis` / :meth:`Series.rename_axis`
100-
- :meth:`DataFrame.rename_columns`
101100
- :meth:`DataFrame.reindex` / :meth:`Series.reindex`
102101
- :meth:`DataFrame.reindex_like` / :meth:`Series.reindex_like`
103102
- :meth:`DataFrame.assign`
@@ -177,8 +176,8 @@ These are bug fixes that might have notable behavior changes.
177176

178177
.. _whatsnew_200.notable_bug_fixes.cumsum_cumprod_overflow:
179178

180-
:meth:`.GroupBy.cumsum` and :meth:`.GroupBy.cumprod` overflow instead of lossy casting to float
181-
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
179+
:meth:`.DataFrameGroupBy.cumsum` and :meth:`.DataFrameGroupBy.cumprod` overflow instead of lossy casting to float
180+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
182181

183182
In previous versions we cast to float when applying ``cumsum`` and ``cumprod`` which
184183
lead to incorrect results even if the result could be hold by ``int64`` dtype.
@@ -824,7 +823,7 @@ Removal of prior version deprecations/changes
824823

825824
Performance improvements
826825
~~~~~~~~~~~~~~~~~~~~~~~~
827-
- Performance improvement in :meth:`.DataFrameGroupBy.median` and :meth:`.SeriesGroupBy.median` and :meth:`.GroupBy.cumprod` for nullable dtypes (:issue:`37493`)
826+
- Performance improvement in :meth:`.DataFrameGroupBy.median` and :meth:`.SeriesGroupBy.median` and :meth:`.DataFrameGroupBy.cumprod` for nullable dtypes (:issue:`37493`)
828827
- Performance improvement in :meth:`.DataFrameGroupBy.all`, :meth:`.DataFrameGroupBy.any`, :meth:`.SeriesGroupBy.all`, and :meth:`.SeriesGroupBy.any` for object dtype (:issue:`50623`)
829828
- Performance improvement in :meth:`MultiIndex.argsort` and :meth:`MultiIndex.sort_values` (:issue:`48406`)
830829
- Performance improvement in :meth:`MultiIndex.size` (:issue:`48723`)

0 commit comments

Comments
 (0)