File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -90,7 +90,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
9090 -i " pandas.DataFrame.median RT03,SA01" \
9191 -i " pandas.DataFrame.min RT03" \
9292 -i " pandas.DataFrame.plot PR02,SA01" \
93- -i " pandas.DataFrame.pop SA01" \
9493 -i " pandas.DataFrame.prod RT03" \
9594 -i " pandas.DataFrame.product RT03" \
9695 -i " pandas.DataFrame.reorder_levels SA01" \
Original file line number Diff line number Diff line change @@ -5535,6 +5535,11 @@ def pop(self, item: Hashable) -> Series:
55355535 Series
55365536 Series representing the item that is dropped.
55375537
5538+ See Also
5539+ --------
5540+ DataFrame.drop: Drop specified labels from rows or columns.
5541+ DataFrame.drop_duplicates: Return DataFrame with duplicate rows removed.
5542+
55385543 Examples
55395544 --------
55405545 >>> df = pd.DataFrame(
@@ -12896,6 +12901,7 @@ def isin_(x):
1289612901 See Also
1289712902 --------
1289812903 DataFrame.index: The index (row labels) of the DataFrame.
12904+ DataFrame.axes: Return a list representing the axes of the DataFrame.
1289912905
1290012906 Examples
1290112907 --------
You can’t perform that action at this time.
0 commit comments