Skip to content

Commit 9069247

Browse files
DOC: fix ES01 for pandas.plotting.autocorrelation_plot (#61526)
* DOC: fix ES01 for pandas.plotting.autocorrelation_plot * fixed plot type description in extended summary * fixed plot type description in extended summary Co-authored-by: datapythonista <[email protected]> --------- Co-authored-by: datapythonista <[email protected]>
1 parent 7b72112 commit 9069247

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

pandas/plotting/_misc.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -633,6 +633,15 @@ def autocorrelation_plot(series: Series, ax: Axes | None = None, **kwargs) -> Ax
633633
"""
634634
Autocorrelation plot for time series.
635635
636+
This method generates an autocorrelation plot for a given time series,
637+
which helps to identify any periodic structure or correlation within the
638+
data across various lags. It shows the correlation of a time series with a
639+
delayed copy of itself as a function of delay. Autocorrelation plots are useful for
640+
checking randomness in a data set. If the data are random, the autocorrelations
641+
should be near zero for any and all time-lag separations. If the data are not
642+
random, then one or more of the autocorrelations will be significantly
643+
non-zero.
644+
636645
Parameters
637646
----------
638647
series : Series

0 commit comments

Comments
 (0)