File tree 2 files changed +6
-1
lines changed
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
90
90
-i " pandas.DataFrame.median RT03,SA01" \
91
91
-i " pandas.DataFrame.min RT03" \
92
92
-i " pandas.DataFrame.plot PR02,SA01" \
93
- -i " pandas.DataFrame.pop SA01" \
94
93
-i " pandas.DataFrame.prod RT03" \
95
94
-i " pandas.DataFrame.product RT03" \
96
95
-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:
5535
5535
Series
5536
5536
Series representing the item that is dropped.
5537
5537
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
+
5538
5543
Examples
5539
5544
--------
5540
5545
>>> df = pd.DataFrame(
@@ -12896,6 +12901,7 @@ def isin_(x):
12896
12901
See Also
12897
12902
--------
12898
12903
DataFrame.index: The index (row labels) of the DataFrame.
12904
+ DataFrame.axes: Return a list representing the axes of the DataFrame.
12899
12905
12900
12906
Examples
12901
12907
--------
You can’t perform that action at this time.
0 commit comments