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.25.0.rst
+7-8
Original file line number
Diff line number
Diff line change
@@ -190,7 +190,7 @@ Other enhancements
190
190
- Added support for ISO week year format ('%G-%V-%u') when parsing datetimes using :meth:`to_datetime` (:issue:`16607`)
191
191
- Indexing of ``DataFrame`` and ``Series`` now accepts zerodim ``np.ndarray`` (:issue:`24919`)
192
192
- :meth:`Timestamp.replace` now supports the ``fold`` argument to disambiguate DST transition times (:issue:`25017`)
193
-
- :meth:`DataFrame.at_time` and :meth:`Series.at_time` now support :meth:`datetime.time` objects with timezones (:issue:`24043`)
193
+
- :meth:`DataFrame.at_time` and :meth:`Series.at_time` now support :class:`datetime.time` objects with timezones (:issue:`24043`)
194
194
- :meth:`DataFrame.pivot_table` now accepts an ``observed`` parameter which is passed to underlying calls to :meth:`DataFrame.groupby` to speed up grouping categorical data. (:issue:`24923`)
195
195
- ``Series.str`` has gained :meth:`Series.str.casefold` method to removes all case distinctions present in a string (:issue:`25405`)
196
196
- :meth:`DataFrame.set_index` now works for instances of ``abc.Iterator``, provided their output is of the same length as the calling frame (:issue:`22484`, :issue:`24984`)
@@ -406,9 +406,8 @@ Previously, columns that were categorical, but not the groupby key(s) would be c
:meth:`SparseArray.get_values`and :meth:`Categorical.get_values` methods are deprecated.
880
879
One of ``np.asarray(..)``or :meth:`~Series.to_numpy` can be used instead (:issue:`19617`).
881
880
- The 'outer' method on NumPy ufuncs, e.g. ``np.subtract.outer`` has been deprecated on :class:`Series` objects. Convert the input to an array with :attr:`Series.array` first (:issue:`27186`)
882
-
- :meth:`Timedelta.resolution`is deprecated and replaced with :meth:`Timedelta.resolution_string`. In a future version, :meth:`Timedelta.resolution` will be changed to behave like the standard library :attr:`timedelta.resolution` (:issue:`21344`)
881
+
- :meth:`Timedelta.resolution`is deprecated and replaced with :meth:`Timedelta.resolution_string`. In a future version, :meth:`Timedelta.resolution` will be changed to behave like the standard library :attr:`datetime.timedelta.resolution` (:issue:`21344`)
883
882
- :func:`read_table` has been undeprecated. (:issue:`25220`)
- :attr:`Series.imag`and :attr:`Series.real` are deprecated. (:issue:`18262`)
@@ -902,15 +901,15 @@ Removal of prior version deprecations/changes
902
901
- Removed the previously deprecated ``convert_objects`` (:issue:`11221`)
903
902
- Removed the previously deprecated ``select`` method of ``DataFrame``and``Series`` (:issue:`17633`)
904
903
- Removed the previously deprecated behavior of :class:`Series` treated aslist-like in :meth:`~Series.cat.rename_categories` (:issue:`17982`)
905
-
- Removed the previously deprecated ``DataFrame.reindex_axis``and``Series.reindex_axis``` (:issue:`17842`)
904
+
- Removed the previously deprecated ``DataFrame.reindex_axis``and``Series.reindex_axis`` (:issue:`17842`)
906
905
- Removed the previously deprecated behavior of altering column or index labels with :meth:`Series.rename_axis`or :meth:`DataFrame.rename_axis` (:issue:`17842`)
907
906
- Removed the previously deprecated ``tupleize_cols`` keyword argument in :meth:`read_html`, :meth:`read_csv`, and :meth:`DataFrame.to_csv` (:issue:`17877`, :issue:`17820`)
908
907
- Removed the previously deprecated ``DataFrame.from.csv``and``Series.from_csv`` (:issue:`17812`)
909
908
- Removed the previously deprecated ``raise_on_error`` keyword argument in :meth:`DataFrame.where`and :meth:`DataFrame.mask` (:issue:`17744`)
910
909
- Removed the previously deprecated ``ordered``and``categories`` keyword arguments in``astype`` (:issue:`17742`)
911
910
- Removed the previously deprecated ``cdate_range`` (:issue:`17691`)
912
911
- Removed the previously deprecated ``True`` option for the ``dropna`` keyword argument in :func:`SeriesGroupBy.nth` (:issue:`17493`)
913
-
- Removed the previously deprecated ``convert`` keyword argument in :meth:`Series.take`and :meth:`DataFrame.take`(:issue:`17352`)
912
+
- Removed the previously deprecated ``convert`` keyword argument in :meth:`Series.take`and :meth:`DataFrame.take`(:issue:`17352`)
914
913
915
914
.. _whatsnew_0250.performance:
916
915
@@ -1134,7 +1133,7 @@ Groupby/resample/rolling
1134
1133
- Bug in :meth:`pandas.core.window.Rolling.median`and :meth:`pandas.core.window.Rolling.quantile` where MemoryErroris raised with empty window (:issue:`26005`)
1135
1134
- Bug in :meth:`pandas.core.window.Rolling.median`and :meth:`pandas.core.window.Rolling.quantile` where incorrect results are returned with``closed='left'``and``closed='neither'`` (:issue:`26005`)
1136
1135
- Improved :class:`pandas.core.window.Rolling`, :class:`pandas.core.window.Window`and :class:`pandas.core.window.EWM` functions to exclude nuisance columns from results instead of raising errors andraise a ``DataError`` only ifall columns are nuisance (:issue:`12537`)
1137
-
- Bug in :meth:`pandas.core.window.Rolling.max`and :meth:`pandas.core.window.Rolling.min` where incorrect results are returned with an empty variable window`` (:issue:`26005`)
1136
+
- Bug in :meth:`pandas.core.window.Rolling.max`and :meth:`pandas.core.window.Rolling.min` where incorrect results are returned with an empty variable window (:issue:`26005`)
0 commit comments