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.1.0.rst
+4
Original file line number
Diff line number
Diff line change
@@ -139,6 +139,7 @@ Other enhancements
139
139
- The :meth:`DataFrame.to_feather` method now supports additional keyword
140
140
arguments (e.g. to set the compression) that are added in pyarrow 0.17
141
141
(:issue:`33422`).
142
+
- The :func:`cut` will now accept parameter ``ordered`` with default ``ordered=True``. If ``ordered=False`` and no labels are provided, an error will be raised (:issue:`33141`)
and :meth:`DataFrame.to_json` now support passing a dict of
144
145
compression arguments when using the ``gzip`` and ``bz2`` protocols.
@@ -547,6 +548,7 @@ Datetimelike
547
548
- Bug in :meth:`DatetimeIndex.tz_localize` incorrectly retaining ``freq`` in some cases where the original freq is no longer valid (:issue:`30511`)
548
549
- Bug in :meth:`DatetimeIndex.intersection` losing ``freq`` and timezone in some cases (:issue:`33604`)
549
550
- Bug in :class:`DatetimeIndex` addition and subtraction with some types of :class:`DateOffset` objects incorrectly retaining an invalid ``freq`` attribute (:issue:`33779`)
551
+
- Bug in :class:`DatetimeIndex` where setting the ``freq`` attribute on an index could silently change the ``freq`` attribute on another index viewing the same data (:issue:`33552`)
550
552
551
553
Timedelta
552
554
^^^^^^^^^
@@ -573,6 +575,7 @@ Numeric
573
575
- Bug in :meth:`DataFrame.count` with ``level="foo"`` and index level ``"foo"`` containing NaNs causes segmentation fault (:issue:`21824`)
574
576
- Bug in :meth:`DataFrame.diff` with ``axis=1`` returning incorrect results with mixed dtypes (:issue:`32995`)
575
577
- Bug in :meth:`DataFrame.corr` and :meth:`DataFrame.cov` raising when handling nullable integer columns with ``pandas.NA`` (:issue:`33803`)
578
+
- Bug in :class:`DataFrame` and :class:`Series` addition and subtraction between object-dtype objects and ``datetime64`` dtype objects (:issue:`33824`)
576
579
577
580
Conversion
578
581
^^^^^^^^^^
@@ -723,6 +726,7 @@ Reshaping
723
726
- Bug in :meth:`concat` where when passing a non-dict mapping as ``objs`` would raise a ``TypeError`` (:issue:`32863`)
724
727
- :meth:`DataFrame.agg` now provides more descriptive ``SpecificationError`` message when attempting to aggregating non-existant column (:issue:`32755`)
725
728
- Bug in :meth:`DataFrame.unstack` when MultiIndexed columns and MultiIndexed rows were used (:issue:`32624`, :issue:`24729` and :issue:`28306`)
729
+
- Bug in :func:`cut` raised an error when non-unique labels (:issue:`33141`)
0 commit comments