Skip to content

Commit e00e142

Browse files
DOC: fix RT03,SA01 for pandas.plotting.autocorrelation_plot (#58895)
1 parent 8c23911 commit e00e142

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
@@ -475,7 +475,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
475475
-i "pandas.pivot PR07" \
476476
-i "pandas.pivot_table PR07" \
477477
-i "pandas.plotting.andrews_curves RT03,SA01" \
478-
-i "pandas.plotting.autocorrelation_plot RT03,SA01" \
479478
-i "pandas.plotting.lag_plot RT03,SA01" \
480479
-i "pandas.plotting.scatter_matrix PR07,SA01" \
481480
-i "pandas.qcut PR07,SA01" \

pandas/plotting/_misc.py

+6
Original file line numberDiff line numberDiff line change
@@ -606,6 +606,12 @@ def autocorrelation_plot(series: Series, ax: Axes | None = None, **kwargs) -> Ax
606606
Returns
607607
-------
608608
matplotlib.axes.Axes
609+
The matplotlib axes containing the autocorrelation plot.
610+
611+
See Also
612+
--------
613+
Series.autocorr : Compute the lag-N autocorrelation for a Series.
614+
plotting.lag_plot : Lag plot for time series.
609615
610616
Examples
611617
--------

0 commit comments

Comments
 (0)