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.21.0.txt
+25Lines changed: 25 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -667,6 +667,31 @@ Deprecations
667
667
- passing ``categories`` or ``ordered`` kwargs to :func:`Series.astype` is deprecated, in favor of passing a :ref:`CategoricalDtype <whatsnew_0210.enhancements.categorical_dtype>` (:issue:`17636`)
668
668
- Passing a non-existant column in ``.to_excel(..., columns=)`` is deprecated and will raise a ``KeyError`` in the future (:issue:`17295`)
669
669
670
+
.. _whatsnew_0210.deprecations.select:
671
+
672
+
Series.select and DataFrame.select
673
+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
674
+
675
+
The :meth:`Series.select` and :meth:`DataFrame.select` methods are deprecated in favor of using ``df.loc[labels.map(crit)]`` (:issue:`12401`)
0 commit comments