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-2
Original file line number
Diff line number
Diff line change
@@ -41,9 +41,7 @@ Enhancements
41
41
- ``DataFrame.diff`` now takes an ``axis`` parameter that determines the direction of differencing (:issue:`9727`)
42
42
- Added ``StringMethods`` (.str accessor) to ``Index`` (:issue:`9068`)
43
43
- Added ``StringMethods.normalize()`` which behaves the same as standard :func:`unicodedata.normalizes` (:issue:`10031`)
44
-
45
44
- Added ``StringMethods.partition()`` and ``rpartition()`` which behave as the same as standard ``str`` (:issue:`9773`)
46
-
- 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).
47
45
48
46
The ``.str`` accessor is now available for both ``Series`` and ``Index``.
49
47
@@ -65,6 +63,8 @@ Enhancements
65
63
idx.str.startswith('a')
66
64
s[s.index.str.startswith('a')]
67
65
66
+
- Improved ``extract`` and ``get_dummies`` methods for ``Index.str`` (:issue:`9980`)
67
+
- 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).
68
68
- ``DataFrame.mask()`` and ``Series.mask()`` now support same keywords as ``where`` (:issue:`8801`)
69
69
70
70
- ``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