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/v0.24.0.rst
+30-1
Original file line number
Diff line number
Diff line change
@@ -159,7 +159,9 @@ Reduction and groupby operations such as 'sum' work.
159
159
160
160
.. warning::
161
161
162
-
The Integer NA support currently uses the captilized dtype version, e.g. ``Int8`` as compared to the traditional ``int8``. This may be changed at a future date.
162
+
The Integer NA support currently uses the capitalized dtype version, e.g. ``Int8`` as compared to the traditional ``int8``. This may be changed at a future date.
163
+
164
+
See :ref:`integer_na` for more.
163
165
164
166
.. _whatsnew_0240.enhancements.array:
165
167
@@ -671,6 +673,31 @@ is the case with :attr:`Period.end_time`, for example
671
673
672
674
p.end_time
673
675
676
+
.. _whatsnew_0240.api_breaking.datetime_unique:
677
+
678
+
The return type of :meth:`Series.unique` for datetime with timezone values has changed
679
+
from an :class:`numpy.ndarray` of :class:`Timestamp` objects to a :class:`arrays.DatetimeArray` (:issue:`24024`).
@@ -1569,6 +1596,8 @@ Notice how we now instead output ``np.nan`` itself instead of a stringified form
1569
1596
- :func:`read_sas()` will correctly parse sas7bdat files with data page types having also bit 7 set (so page type is 128 + 256 = 384) (:issue:`16615`)
1570
1597
- Bug in :meth:`detect_client_encoding` where potential ``IOError`` goes unhandled when importing in a mod_wsgi process due to restricted access to stdout. (:issue:`21552`)
1571
1598
- Bug in :func:`to_html()` with ``index=False`` misses truncation indicators (...) on truncated DataFrame (:issue:`15019`, :issue:`22783`)
1599
+
- Bug in :func:`to_html()` with ``index=False`` when both columns and row index are ``MultiIndex`` (:issue:`22579`)
1600
+
- Bug in :func:`to_html()` with ``index_names=False`` displaying index name (:issue:`22747`)
1572
1601
- Bug in :func:`DataFrame.to_string()` that broke column alignment when ``index=False`` and width of first column's values is greater than the width of first column's header (:issue:`16839`, :issue:`13032`)
1573
1602
- Bug in :func:`DataFrame.to_string()` that caused representations of :class:`DataFrame` to not take up the whole window (:issue:`22984`)
1574
1603
- Bug in :func:`DataFrame.to_csv` where a single level MultiIndex incorrectly wrote a tuple. Now just the value of the index is written (:issue:`19589`).
0 commit comments