Skip to content

Commit a8875e1

Browse files
DOC: add PR02 for pandas.DataFrame.plot (#59255)
* DOC: add PR02 for pandas.DataFrame.plot * DOC: fix PR02 for pandas.Series.plot
1 parent 794913c commit a8875e1

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

ci/code_checks.sh

-2
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
7070
--format=actions \
7171
-i ES01 `# For now it is ok if docstrings are missing the extended summary` \
7272
-i "pandas.Series.dt PR01" `# Accessors are implemented as classes, but we do not document the Parameters section` \
73-
-i "pandas.DataFrame.plot PR02" \
7473
-i "pandas.Grouper PR02" \
7574
-i "pandas.MultiIndex.append PR07,SA01" \
7675
-i "pandas.MultiIndex.copy PR07,RT03,SA01" \
@@ -156,7 +155,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
156155
-i "pandas.Series.lt SA01" \
157156
-i "pandas.Series.ne SA01" \
158157
-i "pandas.Series.pad PR01,SA01" \
159-
-i "pandas.Series.plot PR02" \
160158
-i "pandas.Series.pop SA01" \
161159
-i "pandas.Series.prod RT03" \
162160
-i "pandas.Series.product RT03" \

pandas/plotting/_core.py

+3
Original file line numberDiff line numberDiff line change
@@ -652,6 +652,9 @@ class PlotAccessor(PandasObject):
652652
----------
653653
data : Series or DataFrame
654654
The object for which the method is called.
655+
656+
Attributes
657+
----------
655658
x : label or position, default None
656659
Only used if data is a DataFrame.
657660
y : label, position or list of label, positions, default None

0 commit comments

Comments
 (0)