Skip to content

Commit 847ee00

Browse files
KeiOshimapmhatre1
authored andcommitted
Doc: Fixing SA01 error for DataFrame: pop and columns (pandas-dev#58359)
Doc: Fixinf SA01 error for DataFrame: pop and columns
1 parent 9706ad3 commit 847ee00

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

ci/code_checks.sh

-1
Original file line numberDiff line numberDiff 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" \

pandas/core/frame.py

+6
Original file line numberDiff line numberDiff 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
--------

0 commit comments

Comments
 (0)