File tree 2 files changed +10
-2
lines changed
2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -81,7 +81,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
81
81
-i " pandas.Index PR07" \
82
82
-i " pandas.Index.join PR07,RT03,SA01" \
83
83
-i " pandas.Index.ravel PR01,RT03" \
84
- -i " pandas.Index.str PR01,SA01" \
85
84
-i " pandas.Interval PR02" \
86
85
-i " pandas.IntervalIndex.closed SA01" \
87
86
-i " pandas.IntervalIndex.contains RT03" \
@@ -228,7 +227,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
228
227
-i " pandas.Series.sparse.sp_values SA01" \
229
228
-i " pandas.Series.sparse.to_coo PR07,RT03,SA01" \
230
229
-i " pandas.Series.std PR01,RT03,SA01" \
231
- -i " pandas.Series.str PR01,SA01" \
232
230
-i " pandas.Series.str.capitalize RT03" \
233
231
-i " pandas.Series.str.casefold RT03" \
234
232
-i " pandas.Series.str.center RT03,SA01" \
Original file line number Diff line number Diff line change @@ -162,6 +162,16 @@ class StringMethods(NoNewAttributesMixin):
162
162
Patterned after Python's string methods, with some inspiration from
163
163
R's stringr package.
164
164
165
+ Parameters
166
+ ----------
167
+ data : Series or Index
168
+ The content of the Series or Index.
169
+
170
+ See Also
171
+ --------
172
+ Series.str : Vectorized string functions for Series.
173
+ Index.str : Vectorized string functions for Index.
174
+
165
175
Examples
166
176
--------
167
177
>>> s = pd.Series(["A_Str_Series"])
You can’t perform that action at this time.
0 commit comments