File tree 2 files changed +8
-3
lines changed 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -2179,8 +2179,12 @@ Computations / Descriptive Stats
2179
2179
.. autosummary ::
2180
2180
:toctree: generated/
2181
2181
2182
+ GroupBy.all
2183
+ GroupBy.any
2184
+ GroupBy.bfill
2182
2185
GroupBy.count
2183
2186
GroupBy.cumcount
2187
+ GroupBy.ffill
2184
2188
GroupBy.first
2185
2189
GroupBy.head
2186
2190
GroupBy.last
@@ -2192,6 +2196,7 @@ Computations / Descriptive Stats
2192
2196
GroupBy.nth
2193
2197
GroupBy.ohlc
2194
2198
GroupBy.prod
2199
+ GroupBy.rank
2195
2200
GroupBy.size
2196
2201
GroupBy.sem
2197
2202
GroupBy.std
Original file line number Diff line number Diff line change @@ -697,10 +697,10 @@ Performance Improvements
697
697
- Improved performance of :func:`DataFrame.median` with ``axis=1`` when bottleneck is not installed (:issue:`16468`)
698
698
- Improved performance of :func:`MultiIndex.get_loc` for large indexes, at the cost of a reduction in performance for small ones (:issue:`18519`)
699
699
- 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`)
701
701
- 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`)
704
704
705
705
.. _whatsnew_0230.docs:
706
706
You can’t perform that action at this time.
0 commit comments