Axes.acorr(x, *, data=None, **kwargs)[source]¶Plot the autocorrelation of x.
| Parameters: | x : array-like detrend : callable, optional, default:
normed : bool, optional, default: True
usevlines : bool, optional, default: True
maxlags : int, optional, default: 10
|
|---|---|
| Returns: | lags : array (length
c : array (length
line :
b :
|
| Other Parameters: | linestyle :
marker : str, optional, default: 'o'
|
Notes
The cross correlation is performed with numpy.correlate() with
mode = "full".
Note
In addition to the above described arguments, this function can take a data keyword argument. If such a data argument is given, the following arguments are replaced by data[<arg>]:
Objects passed as data must support item access (data[<arg>]) and
membership test (<arg> in data).
matplotlib.axes.Axes.acorr¶