Skip to content

Commit 2fa5f22

Browse files
ooooo-createpmhatre1
authored andcommitted
DOC: fix SA05 errors in docstrings for pandas.plotting.bootstrap_plot and pandas.plotting.radviz (pandas-dev#57434)
DOC: fix SA05 errors in docstrings for pandas.plotting.bootstrap_plot,pandas.plotting.radviz
1 parent efccbe0 commit 2fa5f22

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

ci/code_checks.sh

+1-3
Original file line numberDiff line numberDiff line change
@@ -1871,9 +1871,7 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
18711871
pandas.core.groupby.SeriesGroupBy.first\
18721872
pandas.core.groupby.SeriesGroupBy.last\
18731873
pandas.core.window.expanding.Expanding.aggregate\
1874-
pandas.core.window.rolling.Rolling.aggregate\
1875-
pandas.plotting.bootstrap_plot\
1876-
pandas.plotting.radviz # There should be no backslash in the final line, please keep this comment in the last ignored function
1874+
pandas.core.window.rolling.Rolling.aggregate # There should be no backslash in the final line, please keep this comment in the last ignored function
18771875
RET=$(($RET + $?)) ; echo $MSG "DONE"
18781876

18791877
fi

pandas/plotting/_misc.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -278,10 +278,11 @@ def radviz(
278278
Returns
279279
-------
280280
:class:`matplotlib.axes.Axes`
281+
The Axes object from Matplotlib.
281282
282283
See Also
283284
--------
284-
pandas.plotting.andrews_curves : Plot clustering visualization.
285+
plotting.andrews_curves : Plot clustering visualization.
285286
286287
Examples
287288
--------
@@ -431,8 +432,8 @@ def bootstrap_plot(
431432
432433
See Also
433434
--------
434-
pandas.DataFrame.plot : Basic plotting for DataFrame objects.
435-
pandas.Series.plot : Basic plotting for Series objects.
435+
DataFrame.plot : Basic plotting for DataFrame objects.
436+
Series.plot : Basic plotting for Series objects.
436437
437438
Examples
438439
--------

0 commit comments

Comments
 (0)