corr

corr(dt, z1, z2, axis=0, **kwargs)[source]

Return the correlation spectrum at successive lags.

Parameters
  • dt (float or array-like) – The timestep or regularly-spaced time coordinates.

  • z1 (array-like) – The input data.

  • z2 (array-like, optional) – The second input data. Must be same shape as z1.

  • axis (int, optional) – Axis along which correlation is taken.

  • lag (int, optional) – Return correlation at the single lag lag.

  • nlag (int, optional) – Return lagged correlation from 0 timesteps up to nlag timesteps.

Returns

  • lags (array-like) – The lags.

  • result (array-like) – The correlation as a function of lag.

Note

This function uses the following formula to estimate correlation at lag \(k\):

\[\dfrac{\sum_{i=0}^{n-k}\left(x_t - \overline{x}\right)\left(y_{t+k} - \overline{y}\right)}{(n - k) s_x s_y}\]

where \(\overline{x}\) and \(\overline{y}\) are the sample means and \(s_x\) and \(s_y\) are the sample standard deviations.