File tree 2 files changed +5
-2
lines changed
2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -134,7 +134,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
134
134
-i " pandas.Index.inferred_type SA01" \
135
135
-i " pandas.Index.insert PR07,RT03,SA01" \
136
136
-i " pandas.Index.intersection PR07,RT03,SA01" \
137
- -i " pandas.Index.item SA01" \
138
137
-i " pandas.Index.join PR07,RT03,SA01" \
139
138
-i " pandas.Index.memory_usage RT03" \
140
139
-i " pandas.Index.names GL08" \
@@ -288,7 +287,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
288
287
-i " pandas.Series.is_monotonic_decreasing SA01" \
289
288
-i " pandas.Series.is_monotonic_increasing SA01" \
290
289
-i " pandas.Series.is_unique SA01" \
291
- -i " pandas.Series.item SA01" \
292
290
-i " pandas.Series.kurt RT03,SA01" \
293
291
-i " pandas.Series.kurtosis RT03,SA01" \
294
292
-i " pandas.Series.le PR07,SA01" \
Original file line number Diff line number Diff line change @@ -398,6 +398,11 @@ def item(self):
398
398
ValueError
399
399
If the data is not length = 1.
400
400
401
+ See Also
402
+ --------
403
+ Index.values : Returns an array representing the data in the Index.
404
+ Series.head : Returns the first `n` rows.
405
+
401
406
Examples
402
407
--------
403
408
>>> s = pd.Series([1])
You can’t perform that action at this time.
0 commit comments