You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Merge branch 'master' into bugfix/replace_recursion
* master:
BENCH: asv csv reading benchmarks no longer read StringIO objects off the end (pandas-dev#21807)
BUG: df.agg, df.transform and df.apply use different methods when axis=1 than when axis=0 (pandas-dev#21224)
BUG: bug in GroupBy.count where arg minlength passed to np.bincount must be None for np<1.13 (pandas-dev#21957)
CLN: Vbench to asv conversion script (pandas-dev#22089)
consistent docstring (pandas-dev#22066)
TST: skip pytables test with not-updated pytables conda package (pandas-dev#22099)
CLN: Remove Legacy MultiIndex Index Compatibility (pandas-dev#21740)
DOC: Reword doc for filepath_or_buffer in read_csv (pandas-dev#22058)
BUG: rolling with MSVC 2017 build (pandas-dev#21813)
Copy file name to clipboardExpand all lines: doc/source/whatsnew/v0.24.0.txt
+7-5
Original file line number
Diff line number
Diff line change
@@ -475,7 +475,9 @@ Numeric
475
475
- Bug in :class:`Series` ``__rmatmul__`` doesn't support matrix vector multiplication (:issue:`21530`)
476
476
- Bug in :func:`factorize` fails with read-only array (:issue:`12813`)
477
477
- Fixed bug in :func:`unique` handled signed zeros inconsistently: for some inputs 0.0 and -0.0 were treated as equal and for some inputs as different. Now they are treated as equal for all inputs (:issue:`21866`)
478
-
-
478
+
- Bug in :meth:`DataFrame.agg`, :meth:`DataFrame.transform` and :meth:`DataFrame.apply` where,
479
+
when supplied with a list of functions and ``axis=1`` (e.g. ``df.apply(['sum', 'mean'], axis=1)``),
480
+
a ``TypeError`` was wrongly raised. For all three methods such calculation are now done correctly. (:issue:`16679`).
479
481
-
480
482
481
483
Strings
@@ -514,7 +516,7 @@ Missing
514
516
MultiIndex
515
517
^^^^^^^^^^
516
518
517
-
-
519
+
- Removed compatibility for MultiIndex pickles prior to version 0.8.0; compatibility with MultiIndex pickles from version 0.13 forward is maintained (:issue:`21654`)
518
520
-
519
521
-
520
522
@@ -536,11 +538,11 @@ Groupby/Resample/Rolling
536
538
537
539
- Bug in :func:`pandas.core.groupby.GroupBy.first` and :func:`pandas.core.groupby.GroupBy.last` with ``as_index=False`` leading to the loss of timezone information (:issue:`15884`)
538
540
- Bug in :meth:`DatetimeIndex.resample` when downsampling across a DST boundary (:issue:`8531`)
539
-
-
540
-
-
541
-
541
+
- Bug where ``ValueError`` is wrongly raised when calling :func:`~pandas.core.groupby.SeriesGroupBy.count` method of a
542
+
``SeriesGroupBy`` when the grouping variable only contains NaNs and numpy version < 1.13 (:issue:`21956`).
542
543
- Multiple bugs in :func:`pandas.core.Rolling.min` with ``closed='left'` and a
543
544
datetime-like index leading to incorrect results and also segfault. (:issue:`21704`)
0 commit comments