Skip to content

Commit 7c7e87c

Browse files
committed
whatsnew entry
1 parent a9d85ae commit 7c7e87c

File tree

1 file changed

+2
-14
lines changed

1 file changed

+2
-14
lines changed

doc/source/whatsnew/v0.23.0.txt

+2-14
Original file line numberDiff line numberDiff line change
@@ -214,22 +214,13 @@ Please note that the string `index` is not supported with the round trip format,
214214
:okwarning:
215215

216216
df.index.name = 'index'
217-
218217
df.to_json('test.json', orient='table')
219218
new_df = pd.read_json('test.json', orient='table')
220219
new_df
221-
new_df.dtypes
222-
223-
.. ipython:: python
224-
:suppress:
225-
226-
import os
227-
os.remove('test.json')
228-
220+
print(new_df.index.name)
229221

230222
.. _whatsnew_0230.enhancements.assign_dependent:
231223

232-
233224
``.assign()`` accepts dependent arguments
234225
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
235226

@@ -698,7 +689,6 @@ Performance Improvements
698689
- Improved performance of pairwise ``.rolling()`` and ``.expanding()`` with ``.cov()`` and ``.corr()`` operations (:issue:`17917`)
699690
- Improved performance of :func:`DataFrameGroupBy.rank` (:issue:`15779`)
700691
- Improved performance of variable ``.rolling()`` on ``.min()`` and ``.max()`` (:issue:`19521`)
701-
- Improved performance of ``GroupBy.ffill`` and ``GroupBy.bfill`` (:issue:`11296`)
702692

703693
.. _whatsnew_0230.docs:
704694

@@ -765,8 +755,7 @@ Datetimelike
765755
- Bug in :func:`Timestamp.floor` :func:`DatetimeIndex.floor` where time stamps far in the future and past were not rounded correctly (:issue:`19206`)
766756
- Bug in :func:`to_datetime` where passing an out-of-bounds datetime with ``errors='coerce'`` and ``utc=True`` would raise ``OutOfBoundsDatetime`` instead of parsing to ``NaT`` (:issue:`19612`)
767757
- Bug in :class:`DatetimeIndex` and :class:`TimedeltaIndex` addition and subtraction where name of the returned object was not always set consistently. (:issue:`19744`)
768-
- Bug in :class:`DatetimeIndex` and :class:`TimedeltaIndex` addition and subtraction where operations with numpy arrays raised ``TypeError`` (:issue:`19847`)
769-
-
758+
- Bug in :func:`iterrows` infers strings not compliant to `ISO8601 <https://en.wikipedia.org/wiki/ISO_8601>`_ (:issue:`19671`)
770759

771760
Timedelta
772761
^^^^^^^^^
@@ -818,7 +807,6 @@ Numeric
818807
- Bug in :class:`Index` constructor with ``dtype='uint64'`` where int-like floats were not coerced to :class:`UInt64Index` (:issue:`18400`)
819808
- Bug in :class:`DataFrame` flex arithmetic (e.g. ``df.add(other, fill_value=foo)``) with a ``fill_value`` other than ``None`` failed to raise ``NotImplementedError`` in corner cases where either the frame or ``other`` has length zero (:issue:`19522`)
820809
- Multiplication and division of numeric-dtyped :class:`Index` objects with timedelta-like scalars returns ``TimedeltaIndex`` instead of raising ``TypeError`` (:issue:`19333`)
821-
- Bug where ``NaN`` was returned instead of 0 by :func:`Series.pct_change` and :func:`DataFrame.pct_change` when ``fill_method`` is not ``None`` (provided) (:issue:`19873`)
822810

823811

824812
Indexing

0 commit comments

Comments
 (0)