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.17.1.txt
+10
Original file line number
Diff line number
Diff line change
@@ -81,6 +81,16 @@ Enhancements
81
81
82
82
- Series of type ``"category"`` now make ``.str.<...>`` and ``.dt.<...>`` accessor methods / properties available, if the categories are of that type. (:issue:`10661`)
83
83
84
+
.. ipython:: python
85
+
86
+
s = pd.Series(list('aabb')).astype('category')
87
+
s
88
+
s.str.contains("a")
89
+
90
+
date = pd.Series(date_range('1/1/2015', periods=5)).astype('category')
91
+
date
92
+
date.dt.day
93
+
84
94
- ``pivot_table`` now has a ``margins_name`` argument so you can use something other than the default of 'All' (:issue:`3335`)
85
95
- Implement export of ``datetime64[ns, tz]`` dtypes with a fixed HDF5 store (:issue:`11411`)
0 commit comments