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/user_guide/reshaping.rst
+1-1
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ Reshaping by pivoting DataFrame objects
13
13
14
14
.. image:: ../_static/reshaping_pivot.png
15
15
16
-
Data is often stored in so-called "stacked" or "record" format:
16
+
Data is often stored in so-called "stacked" or "record" format. In a "record" or "wide" format typically there is one row for each subject. In the "stacked" or "long" format there are multiple rows for each subject where applicable.
Copy file name to clipboardExpand all lines: doc/source/whatsnew/v2.0.0.rst
+1
Original file line number
Diff line number
Diff line change
@@ -1190,6 +1190,7 @@ Timedelta
1190
1190
- Bug in :func:`to_timedelta` raising error when input has nullable dtype ``Float64`` (:issue:`48796`)
1191
1191
- Bug in :class:`Timedelta` constructor incorrectly raising instead of returning ``NaT`` when given a ``np.timedelta64("nat")`` (:issue:`48898`)
1192
1192
- Bug in :class:`Timedelta` constructor failing to raise when passed both a :class:`Timedelta` object and keywords (e.g. days, seconds) (:issue:`48898`)
1193
+
- Bug in :class:`Timedelta` comparisons with very large ``datetime.timedelta`` objects incorrect raising ``OutOfBoundsTimedelta`` (:issue:`49021`)
Copy file name to clipboardExpand all lines: doc/source/whatsnew/v2.1.0.rst
+2
Original file line number
Diff line number
Diff line change
@@ -36,6 +36,7 @@ Other enhancements
36
36
- :class:`api.extensions.ExtensionArray` now has a :meth:`~api.extensions.ExtensionArray.map` method (:issue:`51809`)
37
37
- Improve error message when having incompatible columns using :meth:`DataFrame.merge` (:issue:`51861`)
38
38
- Improved error message when creating a DataFrame with empty data (0 rows), no index and an incorrect number of columns. (:issue:`52084`)
39
+
- :meth:`DataFrame.applymap` now uses the :meth:`~api.extensions.ExtensionArray.map` method of underlying :class:`api.extensions.ExtensionArray` instances (:issue:`52219`)
39
40
- :meth:`arrays.SparseArray.map` now supports ``na_action`` (:issue:`52096`).
0 commit comments