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
Copy file name to clipboardExpand all lines: doc/source/whatsnew/v1.5.0.rst
+2
Original file line number
Diff line number
Diff line change
@@ -1011,6 +1011,8 @@ Time Zones
1011
1011
Numeric
1012
1012
^^^^^^^
1013
1013
- Bug in operations with array-likes with ``dtype="boolean"`` and :attr:`NA` incorrectly altering the array in-place (:issue:`45421`)
1014
+
- Bug in arithmetic operations with nullable types without :attr:`NA` values not matching the same operation with non-nullable types (:issue:`48223`)
1015
+
- Bug in ``floordiv`` when dividing by ``IntegerDtype`` ``0`` would return ``0`` instead of ``inf`` (:issue:`48223`)
1014
1016
- Bug in division, ``pow`` and ``mod`` operations on array-likes with ``dtype="boolean"`` not being like their ``np.bool_`` counterparts (:issue:`46063`)
1015
1017
- Bug in multiplying a :class:`Series` with ``IntegerDtype`` or ``FloatingDtype`` by an array-like with ``timedelta64[ns]`` dtype incorrectly raising (:issue:`45622`)
1016
1018
- Bug in :meth:`mean` where the optional dependency ``bottleneck`` causes precision loss linear in the length of the array. ``bottleneck`` has been disabled for :meth:`mean` improving the loss to log-linear but may result in a performance decrease. (:issue:`42878`)
Copy file name to clipboardExpand all lines: doc/source/whatsnew/v1.6.0.rst
+2-1
Original file line number
Diff line number
Diff line change
@@ -100,6 +100,7 @@ Deprecations
100
100
101
101
Performance improvements
102
102
~~~~~~~~~~~~~~~~~~~~~~~~
103
+
- Performance improvement in :meth:`.GroupBy.median` for nullable dtypes (:issue:`37493`)
103
104
- Performance improvement in :meth:`.GroupBy.mean` and :meth:`.GroupBy.var` for extension array dtypes (:issue:`37493`)
104
105
- Performance improvement for :meth:`MultiIndex.unique` (:issue:`48335`)
105
106
-
@@ -154,7 +155,7 @@ Indexing
154
155
^^^^^^^^
155
156
- Bug in :meth:`DataFrame.reindex` filling with wrong values when indexing columns and index for ``uint`` dtypes (:issue:`48184`)
156
157
- Bug in :meth:`DataFrame.reindex` casting dtype to ``object`` when :class:`DataFrame` has single extension array column when re-indexing ``columns`` and ``index`` (:issue:`48190`)
157
-
-
158
+
- Bug in :func:`~DataFrame.describe` when formatting percentiles in the resulting index showed more decimals than needed (:issue:`46362`)
0 commit comments