File tree 2 files changed +9
-3
lines changed
2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -50,10 +50,16 @@ Computations / Descriptive Stats
50
50
GroupBy.bfill
51
51
GroupBy.count
52
52
GroupBy.cumcount
53
+ GroupBy.cummax
54
+ GroupBy.cummin
55
+ GroupBy.cumprod
56
+ GroupBy.cumsum
53
57
GroupBy.ffill
54
58
GroupBy.first
55
59
GroupBy.head
56
60
GroupBy.last
61
+ GroupBy.idxmax
62
+ GroupBy.idxmin
57
63
GroupBy.max
58
64
GroupBy.mean
59
65
GroupBy.median
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ including other versions of pandas.
24
24
Other Enhancements
25
25
^^^^^^^^^^^^^^^^^^
26
26
- :func: `DataFrame.plot ` keywords ``logy ``, ``logx `` and ``loglog `` can now accept the value ``'sym' `` for symlog scaling. (:issue: `24867 `)
27
- - Added support for ISO week year format ('%G-%V-%u') when parsing datetimes using :meth: `to_datetime ` (:issue: `16607 `)
27
+ - Added support for ISO week year format ('%G-%V-%u') when parsing datetimes using :meth: `to_datetime ` (:issue: `16607 `)
28
28
- Indexing of ``DataFrame `` and ``Series `` now accepts zerodim ``np.ndarray `` (:issue: `24919 `)
29
29
- :meth: `Timestamp.replace ` now supports the ``fold `` argument to disambiguate DST transition times (:issue: `25017 `)
30
30
- :meth: `DataFrame.at_time ` and :meth: `Series.at_time ` now support :meth: `datetime.time ` objects with timezones (:issue: `24043 `)
@@ -334,14 +334,14 @@ Indexing
334
334
Missing
335
335
^^^^^^^
336
336
337
- - Fixed misleading exception message in :meth: `Series.missing ` if argument ``order `` is required, but omitted (:issue: `10633 `, :issue: `24014 `).
337
+ - Fixed misleading exception message in :meth: `Series.interpolate ` if argument ``order `` is required, but omitted (:issue: `10633 `, :issue: `24014 `).
338
338
- Fixed class type displayed in exception message in :meth: `DataFrame.dropna ` if invalid ``axis `` parameter passed (:issue: `25555 `)
339
339
-
340
340
341
341
MultiIndex
342
342
^^^^^^^^^^
343
343
344
- - Bug in which incorrect exception raised by :meth: ` pd. Timedelta ` when testing the membership of :class: `MultiIndex ` (:issue: `24570 `)
344
+ - Bug in which incorrect exception raised by :class: ` Timedelta ` when testing the membership of :class: `MultiIndex ` (:issue: `24570 `)
345
345
-
346
346
-
347
347
You can’t perform that action at this time.
0 commit comments