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.4.0.rst
+2-1
Original file line number
Diff line number
Diff line change
@@ -208,6 +208,7 @@ Other enhancements
208
208
- :meth:`Series.str.split` now supports a ``regex`` argument that explicitly specifies whether the pattern is a regular expression. Default is ``None`` (:issue:`43563`, :issue:`32835`, :issue:`25549`)
209
209
- :meth:`DataFrame.dropna` now accepts a single label as ``subset`` along with array-like (:issue:`41021`)
- :meth:`read_excel` now accepts a ``decimal`` argument that allow the user to specify the decimal point when parsing string columns to numeric (:issue:`14403`)
213
214
- :meth:`.GroupBy.mean`, :meth:`.GroupBy.std`, :meth:`.GroupBy.var`, :meth:`.GroupBy.sum` now supports `Numba <http://numba.pydata.org/>`_ execution with the ``engine`` keyword (:issue:`43731`, :issue:`44862`, :issue:`44939`)
@@ -815,7 +816,7 @@ Indexing
815
816
816
817
Missing
817
818
^^^^^^^
818
-
- Bug in :meth:`DataFrame.fillna` with limit and no method ignores axis='columns' or ``axis = 1`` (:issue:`40989`)
819
+
- Bug in :meth:`DataFrame.fillna` with limit and no method ignores axis='columns' or ``axis = 1`` (:issue:`40989`, :issue:`17399`)
819
820
- Bug in :meth:`DataFrame.fillna` not replacing missing values when using a dict-like ``value`` and duplicate column names (:issue:`43476`)
820
821
- Bug in constructing a :class:`DataFrame` with a dictionary ``np.datetime64`` as a value and ``dtype='timedelta64[ns]'``, or vice-versa, incorrectly casting instead of raising (:issue:`44428`)
821
822
- Bug in :meth:`Series.interpolate` and :meth:`DataFrame.interpolate` with ``inplace=True`` not writing to the underlying array(s) in-place (:issue:`44749`)
Copy file name to clipboardExpand all lines: doc/source/whatsnew/v1.5.0.rst
+6-4
Original file line number
Diff line number
Diff line change
@@ -14,10 +14,12 @@ including other versions of pandas.
14
14
Enhancements
15
15
~~~~~~~~~~~~
16
16
17
-
.. _whatsnew_150.enhancements.enhancement1:
17
+
.. _whatsnew_150.enhancements.styler:
18
18
19
-
enhancement1
20
-
^^^^^^^^^^^^
19
+
Styler
20
+
^^^^^^
21
+
22
+
- New method :meth:`.Styler.to_string` for alternative customisable output methods (:issue:`44502`)
21
23
22
24
.. _whatsnew_150.enhancements.enhancement2:
23
25
@@ -151,7 +153,7 @@ Interval
151
153
152
154
Indexing
153
155
^^^^^^^^
154
-
-
156
+
- Bug in :meth:`Series.__setitem__` with a non-integer :class:`Index` when using an integer key to set a value that cannot be set inplace where a ``ValueError`` was raised insead of casting to a common dtype (:issue:`45070`)
0 commit comments