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.0.0.rst
+5-2
Original file line number
Diff line number
Diff line change
@@ -111,7 +111,7 @@ A new ``pd.NA`` value (singleton) is introduced to represent scalar missing
111
111
values. Up to now, ``np.nan`` is used for this for float data, ``np.nan`` or
112
112
``None`` for object-dtype data and ``pd.NaT`` for datetime-like data. The
113
113
goal of ``pd.NA`` is provide a "missing" indicator that can be used
114
-
consistently accross data types. For now, the nullable integer and boolean
114
+
consistently across data types. For now, the nullable integer and boolean
115
115
data types and the new string data type make use of ``pd.NA`` (:issue:`28095`).
116
116
117
117
.. warning::
@@ -571,6 +571,7 @@ or ``matplotlib.Axes.plot``. See :ref:`plotting.formatters` for more.
571
571
- A tuple passed to :meth:`DataFrame.groupby` is now exclusively treated as a single key (:issue:`18314`)
572
572
- Removed the previously deprecated :meth:`Index.contains`, use ``key in index`` instead (:issue:`30103`)
573
573
- Addition and subtraction of ``int`` or integer-arrays is no longer allowed in :class:`Timestamp`, :class:`DatetimeIndex`, :class:`TimedeltaIndex`, use ``obj + n * obj.freq`` instead of ``obj + n`` (:issue:`22535`)
- Bug in :func:`pandas.to_datetime` failing for `deques` when using ``cache=True`` (the default) (:issue:`29403`)
717
718
- Bug in :meth:`Series.item` with ``datetime64`` or ``timedelta64`` dtype, :meth:`DatetimeIndex.item`, and :meth:`TimedeltaIndex.item` returning an integer instead of a :class:`Timestamp` or :class:`Timedelta` (:issue:`30175`)
718
719
- Bug in :class:`DatetimeIndex` addition when adding a non-optimized :class:`DateOffset` incorrectly dropping timezone information (:issue:`30336`)
720
+
- Bug in :meth:`DataFrame.drop` where attempting to drop non-existent values from a DatetimeIndex would yield a confusing error message (:issue:`30399`)
719
721
- Bug in :meth:`DataFrame.append` would remove the timezone-awareness of new data (:issue:`30238`)
720
722
723
+
721
724
Timedelta
722
725
^^^^^^^^^
723
726
- Bug in subtracting a :class:`TimedeltaIndex` or :class:`TimedeltaArray` from a ``np.datetime64`` object (:issue:`29558`)
@@ -825,7 +828,7 @@ Plotting
825
828
- Bug where :meth:`DataFrame.boxplot` would not accept a `color` parameter like `DataFrame.plot.box` (:issue:`26214`)
826
829
- Bug in the ``xticks`` argument being ignored for :meth:`DataFrame.plot.bar` (:issue:`14119`)
827
830
- :func:`set_option` now validates that the plot backend provided to ``'plotting.backend'`` implements the backend when the option is set, rather than when a plot is created (:issue:`28163`)
828
-
- :meth:`DataFrame.plot` now allow a ``backend`` keyword arugment to allow changing between backends in one session (:issue:`28619`).
831
+
- :meth:`DataFrame.plot` now allow a ``backend`` keyword argument to allow changing between backends in one session (:issue:`28619`).
829
832
- Bug in color validation incorrectly raising for non-color styles (:issue:`29122`).
0 commit comments