File tree Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -109,8 +109,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
109109 -i " pandas.Index.copy PR07,SA01" \
110110 -i " pandas.Index.difference PR07,RT03,SA01" \
111111 -i " pandas.Index.drop PR07,SA01" \
112- -i " pandas.Index.droplevel RT03,SA01" \
113- -i " pandas.Index.dropna RT03,SA01" \
114112 -i " pandas.Index.duplicated RT03" \
115113 -i " pandas.Index.get_indexer PR07,SA01" \
116114 -i " pandas.Index.get_indexer_for PR01,SA01" \
@@ -158,7 +156,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
158156 -i " pandas.MultiIndex.append PR07,SA01" \
159157 -i " pandas.MultiIndex.copy PR07,RT03,SA01" \
160158 -i " pandas.MultiIndex.drop PR07,RT03,SA01" \
161- -i " pandas.MultiIndex.droplevel RT03,SA01" \
162159 -i " pandas.MultiIndex.dtypes SA01" \
163160 -i " pandas.MultiIndex.get_indexer PR07,SA01" \
164161 -i " pandas.MultiIndex.get_level_values SA01" \
Original file line number Diff line number Diff line change @@ -2093,6 +2093,12 @@ def droplevel(self, level: IndexLabel = 0):
20932093 Returns
20942094 -------
20952095 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.
20962102
20972103 Examples
20982104 --------
@@ -2619,6 +2625,12 @@ def dropna(self, how: AnyAll = "any") -> Self:
26192625 Returns
26202626 -------
26212627 Index
2628+ Returns an Index object after removing NA/NaN values.
2629+
2630+ See Also
2631+ --------
2632+ Index.fillna : Fill NA/NaN values with the specified value.
2633+ Index.isna : Detect missing values.
26222634
26232635 Examples
26242636 --------
You can’t perform that action at this time.
0 commit comments