Skip to content

Commit

Permalink
DOC: add PR02 for pandas.DataFrame.plot (#59255)
Browse files Browse the repository at this point in the history
* DOC: add PR02 for pandas.DataFrame.plot

* DOC: fix PR02 for pandas.Series.plot
  • Loading branch information
tuhinsharma121 authored Jul 16, 2024
1 parent 794913c commit a8875e1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 0 additions & 2 deletions ci/code_checks.sh
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
--format=actions \
-i ES01 `# For now it is ok if docstrings are missing the extended summary` \
-i "pandas.Series.dt PR01" `# Accessors are implemented as classes, but we do not document the Parameters section` \
-i "pandas.DataFrame.plot PR02" \
-i "pandas.Grouper PR02" \
-i "pandas.MultiIndex.append PR07,SA01" \
-i "pandas.MultiIndex.copy PR07,RT03,SA01" \
Expand Down Expand Up @@ -156,7 +155,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
-i "pandas.Series.lt SA01" \
-i "pandas.Series.ne SA01" \
-i "pandas.Series.pad PR01,SA01" \
-i "pandas.Series.plot PR02" \
-i "pandas.Series.pop SA01" \
-i "pandas.Series.prod RT03" \
-i "pandas.Series.product RT03" \
Expand Down
3 changes: 3 additions & 0 deletions pandas/plotting/_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -652,6 +652,9 @@ class PlotAccessor(PandasObject):
----------
data : Series or DataFrame
The object for which the method is called.
Attributes
----------
x : label or position, default None
Only used if data is a DataFrame.
y : label, position or list of label, positions, default None
Expand Down

0 comments on commit a8875e1

Please sign in to comment.