Skip to content

Commit 0754294

Browse files
committed
Fixed GroupBy to render func links in whatsnew
1 parent 055d8bf commit 0754294

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

doc/source/api.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2179,8 +2179,12 @@ Computations / Descriptive Stats
21792179
.. autosummary::
21802180
:toctree: generated/
21812181

2182+
GroupBy.all
2183+
GroupBy.any
2184+
GroupBy.bfill
21822185
GroupBy.count
21832186
GroupBy.cumcount
2187+
GroupBy.ffill
21842188
GroupBy.first
21852189
GroupBy.head
21862190
GroupBy.last
@@ -2192,6 +2196,7 @@ Computations / Descriptive Stats
21922196
GroupBy.nth
21932197
GroupBy.ohlc
21942198
GroupBy.prod
2199+
GroupBy.rank
21952200
GroupBy.size
21962201
GroupBy.sem
21972202
GroupBy.std

doc/source/whatsnew/v0.23.0.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -697,10 +697,10 @@ Performance Improvements
697697
- Improved performance of :func:`DataFrame.median` with ``axis=1`` when bottleneck is not installed (:issue:`16468`)
698698
- Improved performance of :func:`MultiIndex.get_loc` for large indexes, at the cost of a reduction in performance for small ones (:issue:`18519`)
699699
- Improved performance of pairwise ``.rolling()`` and ``.expanding()`` with ``.cov()`` and ``.corr()`` operations (:issue:`17917`)
700-
- Improved performance of :func:`DataFrameGroupBy.rank` (:issue:`15779`)
700+
- Improved performance of :func:`pandas.core.groupby.GroupBy.rank` (:issue:`15779`)
701701
- Improved performance of variable ``.rolling()`` on ``.min()`` and ``.max()`` (:issue:`19521`)
702-
- Improved performance of ``GroupBy.ffill`` and ``GroupBy.bfill`` (:issue:`11296`)
703-
- Improved performance of ``GroupBy.any`` and ``GroupBy.all`` (:issue:`15435`)
702+
- Improved performance of :func:`pandas.core.groupby.GroupBy.ffill` and :func:`pandas.core.groupby.GroupBy.bfill` (:issue:`11296`)
703+
- Improved performance of :func:`pandas.core.groupby.GroupBy.any` and :func:`pandas.core.groupby.GroupBy.all` (:issue:`15435`)
704704

705705
.. _whatsnew_0230.docs:
706706

0 commit comments

Comments
 (0)