File tree 2 files changed +14
-3
lines changed
2 files changed +14
-3
lines changed Original file line number Diff line number Diff line change @@ -120,11 +120,8 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
120
120
-i " pandas.Index.difference PR07,RT03,SA01" \
121
121
-i " pandas.Index.drop PR07,SA01" \
122
122
-i " pandas.Index.drop_duplicates RT03" \
123
- -i " pandas.Index.droplevel RT03,SA01" \
124
- -i " pandas.Index.dropna RT03,SA01" \
125
123
-i " pandas.Index.duplicated RT03" \
126
124
-i " pandas.Index.empty GL08" \
127
- -i " pandas.Index.fillna RT03" \
128
125
-i " pandas.Index.get_indexer PR07,SA01" \
129
126
-i " pandas.Index.get_indexer_for PR01,SA01" \
130
127
-i " pandas.Index.get_indexer_non_unique PR07,SA01" \
Original file line number Diff line number Diff line change @@ -2093,6 +2093,12 @@ def droplevel(self, level: IndexLabel = 0):
2093
2093
Returns
2094
2094
-------
2095
2095
Index or MultiIndex
2096
+ Returns an Index or MultiIndex object, depending on the resulting index
2097
+ after removing the requested level(s).
2098
+
2099
+ See Also
2100
+ --------
2101
+ Index.dropna : Return Index without NA/NaN values.
2096
2102
2097
2103
Examples
2098
2104
--------
@@ -2578,6 +2584,8 @@ def fillna(self, value):
2578
2584
Returns
2579
2585
-------
2580
2586
Index
2587
+ Returns an Index object with NaN values filled with the specified scalar
2588
+ value.
2581
2589
2582
2590
See Also
2583
2591
--------
@@ -2614,6 +2622,12 @@ def dropna(self, how: AnyAll = "any") -> Self:
2614
2622
Returns
2615
2623
-------
2616
2624
Index
2625
+ Returns an Index object after removing NA/NaN values.
2626
+
2627
+ See Also
2628
+ --------
2629
+ Index.fillna : Fill NA/NaN values with the specified value.
2630
+ Index.isna : Detect missing values.
2617
2631
2618
2632
Examples
2619
2633
--------
You can’t perform that action at this time.
0 commit comments