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.19.2.txt
+10-8
Original file line number
Diff line number
Diff line change
@@ -23,6 +23,16 @@ Performance Improvements
23
23
24
24
- Improved performance of ``.replace()`` (:issue:`12745`)
25
25
26
+
.. _whatsnew_0192.enhancements.other:
27
+
28
+
Other enhancements
29
+
^^^^^^^^^^^^^^^^^^
30
+
31
+
- ``pd.merge_asof()`` gained ``left_index``/``right_index`` and ``left_by``/``right_by`` arguments (:issue:`14253`)
32
+
- ``pd.merge_asof()`` can take multiple columns in ``by`` parameter and has specialized dtypes for better performace (:issue:`13936`)
33
+
34
+
35
+
26
36
.. _whatsnew_0192.bug_fixes:
27
37
28
38
Bug Fixes
@@ -82,11 +92,3 @@ Bug Fixes
82
92
- Bug in ``unstack()`` if called with a list of column(s) as an argument, regardless of the dtypes of all columns, they get coerced to ``object`` (:issue:`11847`)
83
93
84
94
85
-
.. _whatsnew_0192.enhancements.other:
86
-
87
-
Other enhancements
88
-
^^^^^^^^^^^^^^^^^^
89
-
90
-
- ``pd.merge_asof()`` can take multiple columns in ``by`` parameter and has specialized dtypes for better performace (:issue:`13936`)
Copy file name to clipboardExpand all lines: doc/source/whatsnew/v0.20.0.txt
+6
Original file line number
Diff line number
Diff line change
@@ -52,6 +52,9 @@ Other enhancements
52
52
53
53
- ``pd.read_excel`` now preserves sheet order when using ``sheetname=None`` (:issue:`9930`)
54
54
55
+
56
+
- Multiple offset aliases with decimal points are now supported (e.g. '0.5min' is parsed as '30s') (:issue:`8419`)
57
+
55
58
- New ``UnsortedIndexError`` (subclass of ``KeyError``) raised when indexing/slicing into an
56
59
unsorted MultiIndex (:issue:`11897`). This allows differentiation between errors due to lack
57
60
of sorting or an incorrect key. See :ref:`here <advanced.unsorted>`
@@ -61,6 +64,8 @@ Other enhancements
61
64
- The ``usecols`` argument in ``pd.read_csv`` now accepts a callable function as a value (:issue:`14154`)
62
65
- ``pd.DataFrame.plot`` now prints a title above each subplot if ``suplots=True`` and ``title`` is a list of strings (:issue:`14753`)
63
66
- ``pd.Series.interpolate`` now supports timedelta as an index type with ``method='time'`` (:issue:`6424`)
67
+
- ``pandas.io.json.json_normalize()`` gained the option ``errors='ignore'|'raise'``; the default is ``errors='raise'`` which is backward compatible. (:issue:`14583`)
68
+
64
69
65
70
.. _whatsnew_0200.api_breaking:
66
71
@@ -111,6 +116,7 @@ Removal of prior version deprecations/changes
111
116
Performance Improvements
112
117
~~~~~~~~~~~~~~~~~~~~~~~~
113
118
119
+
- Improved performance of ``pd.wide_to_long()`` (:issue:`14779`)
0 commit comments