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.16.1.txt
+2-1
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,6 @@ Enhancements
24
24
25
25
- Added ``StringMethods.capitalize()`` and ``swapcase`` which behave as the same as standard ``str`` (:issue:`9766`)
26
26
- Added ``StringMethods`` (.str accessor) to ``Index`` (:issue:`9068`)
27
-
- Allow clip, clip_lower, and clip_upper to accept array-like arguments as thresholds (:issue:`6966`). These methods now have an ``axis`` parameter which determines how the Series or DataFrame will be aligned with the threshold(s).
28
27
29
28
The ``.str`` accessor is now available for both ``Series`` and ``Index``.
30
29
@@ -46,6 +45,8 @@ Enhancements
46
45
idx.str.startswith('a')
47
46
s[s.index.str.startswith('a')]
48
47
48
+
- Improved ``extract`` and ``get_dummies`` methods for ``Index.str`` (:issue:`9980`)
49
+
- Allow clip, clip_lower, and clip_upper to accept array-like arguments as thresholds (:issue:`6966`). These methods now have an ``axis`` parameter which determines how the Series or DataFrame will be aligned with the threshold(s).
49
50
- ``DataFrame.mask()`` and ``Series.mask()`` now support same keywords as ``where`` (:issue:`8801`)
50
51
51
52
- ``drop`` function can now accept ``errors`` keyword to suppress ``ValueError`` raised when any of label does not exist in the target data. (:issue:`6736`)
0 commit comments