Skip to content

Autocorrelation & Dependence#

statista.time_series.correlation #

Autocorrelation and dependence mixin for TimeSeries.

Correlation #

Bases: _TimeSeriesStub

Autocorrelation and dependence analysis for TimeSeries.

Source code in src/statista/time_series/correlation.py
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
class Correlation(_TimeSeriesStub):
    """Autocorrelation and dependence analysis for TimeSeries."""

    def acf(
        self,
        nlags: int = 40,
        alpha: float = DEFAULT_ALPHA,
        fft: bool = True,
        column: str = None,
        plot: bool = True,
        **kwargs: Any,
    ) -> tuple[np.ndarray | dict[str, np.ndarray], tuple[Figure, Axes] | None]:
        """Compute and optionally plot the autocorrelation function.

        Args:
            nlags: Number of lags to compute. Default 40.
            alpha: Significance level for confidence bands. Default 0.05.
            fft: Use FFT for computation (faster for long series). Default True.
            column: Column name. If None and single-column, uses that column.
                For multi-column without column specified, computes per column.
            plot: Whether to produce a plot. Default True.
            **kwargs: Passed to ``_adjust_axes_labels`` (title, xlabel, ylabel, etc.).

        Returns:
            tuple: (acf_values, (fig, ax)) or (acf_values, None) if plot=False.
                For multi-column: acf_values is a dict mapping column names to arrays.

        Examples:
            >>> import numpy as np
            >>> from statista.time_series import TimeSeries

            ACF of white noise (lag-0 is always 1.0, other lags near zero):

            >>> np.random.seed(42)
            >>> ts = TimeSeries(np.random.randn(200))
            >>> acf_vals, _ = ts.acf(nlags=10, plot=False)
            >>> round(float(acf_vals[0]), 4)
            1.0
            >>> round(float(acf_vals[1]), 4)
            -0.0516
            >>> len(acf_vals)
            11

            ACF of real hydrological data:

            >>> data = np.loadtxt("examples/data/time_series1.txt")
            >>> ts = TimeSeries(data)
            >>> acf_vals, _ = ts.acf(nlags=5, plot=False)
            >>> round(float(acf_vals[0]), 4)
            1.0
            >>> round(float(acf_vals[1]), 4)
            0.2324
        """
        cols = _resolve_columns(self.columns, column)

        acf_results: dict[str, np.ndarray] = {}
        for col in cols:
            data = self[col].dropna().values
            acf_results[col] = _compute_acf(data, nlags=nlags, fft=fft)

        fig_ax: tuple[Figure, Axes] | None = None
        if plot:
            fig_ax = _plot_acf_pacf(
                acf_results,
                len(self[cols[0]].dropna()),
                alpha,
                "ACF",
                self._get_ax_fig,
                **kwargs,
            )

        single_result: np.ndarray | dict[str, np.ndarray] = (
            acf_results[cols[0]] if len(cols) == 1 else acf_results
        )
        return single_result, fig_ax

    def pacf(
        self,
        nlags: int = 40,
        alpha: float = DEFAULT_ALPHA,
        column: str = None,
        plot: bool = True,
        **kwargs: Any,
    ) -> tuple[np.ndarray | dict[str, np.ndarray], tuple[Figure, Axes] | None]:
        """Compute and optionally plot the partial autocorrelation function.

        Uses the Levinson-Durbin recursion to compute PACF from ACF values.

        Args:
            nlags: Number of lags to compute. Default 40.
            alpha: Significance level for confidence bands. Default 0.05.
            column: Column name. If None and single-column, uses that column.
            plot: Whether to produce a plot. Default True.
            **kwargs: Passed to ``_adjust_axes_labels``.

        Returns:
            tuple: (pacf_values, (fig, ax)) or (pacf_values, None) if plot=False.

        Examples:
            >>> import numpy as np
            >>> from statista.time_series import TimeSeries

            PACF of white noise (lag-0 is always 1.0):

            >>> np.random.seed(42)
            >>> ts = TimeSeries(np.random.randn(200))
            >>> pacf_vals, _ = ts.pacf(nlags=10, plot=False)
            >>> round(float(pacf_vals[0]), 4)
            1.0
            >>> round(float(pacf_vals[1]), 4)
            -0.0516
            >>> round(float(pacf_vals[2]), 4)
            -0.0416

            PACF of real hydrological data:

            >>> data = np.loadtxt("examples/data/time_series1.txt")
            >>> ts = TimeSeries(data)
            >>> pacf_vals, _ = ts.pacf(nlags=5, plot=False)
            >>> round(float(pacf_vals[0]), 4)
            1.0
            >>> round(float(pacf_vals[1]), 4)
            0.2324
        """
        cols = _resolve_columns(self.columns, column)

        pacf_results: dict[str, np.ndarray] = {}
        for col in cols:
            data = self[col].dropna().values
            effective_nlags = min(nlags, len(data) // 2 - 1)
            acf_vals = _compute_acf(data, nlags=effective_nlags, fft=True)
            pacf_results[col] = _levinson_durbin_pacf(acf_vals)

        fig_ax: tuple[Figure, Axes] | None = None
        if plot:
            fig_ax = _plot_acf_pacf(
                pacf_results,
                len(self[cols[0]].dropna()),
                alpha,
                "PACF",
                self._get_ax_fig,
                **kwargs,
            )

        single_result: np.ndarray | dict[str, np.ndarray] = (
            pacf_results[cols[0]] if len(cols) == 1 else pacf_results
        )
        return single_result, fig_ax

    def cross_correlation(
        self,
        col_x: str,
        col_y: str,
        nlags: int = 40,
        plot: bool = True,
        **kwargs: Any,
    ) -> tuple[np.ndarray, tuple[Figure, Axes] | None]:
        """Compute the cross-correlation function between two columns.

        Args:
            col_x: First column name.
            col_y: Second column name.
            nlags: Number of lags. Default 40.
            plot: Whether to produce a plot. Default True.
            **kwargs: Passed to ``_adjust_axes_labels``.

        Returns:
            tuple: (ccf_values, (fig, ax)) or (ccf_values, None) if plot=False.

        Examples:
            >>> import numpy as np
            >>> from statista.time_series import TimeSeries

            Cross-correlation between independent random series (near zero):

            >>> np.random.seed(42)
            >>> data = np.column_stack([np.random.randn(100), np.random.randn(100)])
            >>> ts = TimeSeries(data, columns=["A", "B"])
            >>> ccf_vals, _ = ts.cross_correlation("A", "B", nlags=5, plot=False)
            >>> round(float(ccf_vals[0]), 4)
            -0.1364
            >>> len(ccf_vals)
            6

            Cross-correlation between correlated series (strong at lag 0):

            >>> np.random.seed(42)
            >>> x = np.random.randn(100)
            >>> y = 0.8 * x + 0.2 * np.random.randn(100)
            >>> ts = TimeSeries(np.column_stack([x, y]), columns=["X", "Y"])
            >>> ccf_vals, _ = ts.cross_correlation("X", "Y", nlags=5, plot=False)
            >>> round(float(ccf_vals[0]), 4)
            0.9655
        """
        x = self[col_x].dropna().values
        y = self[col_y].dropna().values
        min_len = min(len(x), len(y))
        x, y = x[:min_len], y[:min_len]

        ccf_vals = _compute_ccf(x, y, nlags=nlags)

        fig_ax: tuple[Figure, Axes] | None = None
        if plot:
            fig, ax = self._get_ax_fig(**kwargs)
            kwargs.pop("fig", None)
            kwargs.pop("ax", None)

            lags = np.arange(len(ccf_vals))
            ax.vlines(lags, 0, ccf_vals, colors="steelblue", linewidth=1.5)
            ax.scatter(lags, ccf_vals, color="steelblue", s=15, zorder=5)
            ax.axhline(0, color="black", linewidth=0.5)

            ci = 1.96 / np.sqrt(min_len)
            ax.axhline(ci, color="red", linestyle="--", linewidth=0.7, label="95% CI")
            ax.axhline(-ci, color="red", linestyle="--", linewidth=0.7)

            peak_lag = int(np.argmax(np.abs(ccf_vals)))
            ax.annotate(
                f"max |r| at lag {peak_lag}",
                xy=(peak_lag, ccf_vals[peak_lag]),
                fontsize=9,
                color="red",
            )

            if "title" not in kwargs:
                kwargs["title"] = f"Cross-Correlation: {col_x} vs {col_y}"
            if "xlabel" not in kwargs:
                kwargs["xlabel"] = "Lag"
            if "ylabel" not in kwargs:
                kwargs["ylabel"] = "CCF"

            ax = self._adjust_axes_labels(ax, **kwargs)
            plt.show()
            fig_ax = (fig, ax)

        return ccf_vals, fig_ax

    def lag_plot(
        self,
        lag: int = 1,
        column: str = None,
        **kwargs: Any,
    ) -> tuple[Figure, Axes]:
        """Scatter plot of x(t) vs x(t-lag) for visual serial dependence check.

        Args:
            lag: Lag to use. Default 1.
            column: Column name. If None, uses first column.
            **kwargs: Passed to ``_adjust_axes_labels``.

        Returns:
            tuple: (Figure, Axes)

        Examples:
            >>> import numpy as np  # doctest: +SKIP
            >>> from statista.time_series import TimeSeries  # doctest: +SKIP
            >>> np.random.seed(42)  # doctest: +SKIP
            >>> ts = TimeSeries(np.random.randn(100))  # doctest: +SKIP
            >>> fig, ax = ts.lag_plot(lag=1)  # doctest: +SKIP

            Using real data with lag 2:

            >>> data = np.loadtxt("examples/data/time_series1.txt")  # doctest: +SKIP
            >>> ts = TimeSeries(data)  # doctest: +SKIP
            >>> fig, ax = ts.lag_plot(lag=2)  # doctest: +SKIP
        """
        if column is None:
            column = self.columns[0]

        data = self[column].dropna().values
        x = data[:-lag]
        y = data[lag:]

        fig, ax = self._get_ax_fig(**kwargs)
        kwargs.pop("fig", None)
        kwargs.pop("ax", None)

        ax.scatter(
            x, y, alpha=0.5, s=10, color="steelblue", edgecolor="white", linewidth=0.3
        )

        r = np.corrcoef(x, y)[0, 1]
        ax.annotate(
            f"r = {r:.3f}",
            xy=(0.05, 0.95),
            xycoords="axes fraction",
            fontsize=11,
            va="top",
        )

        if "title" not in kwargs:
            kwargs["title"] = f"Lag Plot (lag={lag})"
        if "xlabel" not in kwargs:
            kwargs["xlabel"] = "x(t)"
        if "ylabel" not in kwargs:
            kwargs["ylabel"] = f"x(t+{lag})"

        ax = self._adjust_axes_labels(ax, **kwargs)
        plt.show()
        return fig, ax

    def correlation_matrix(
        self,
        method: str = "pearson",
        plot: bool = True,
        **kwargs: Any,
    ) -> tuple[DataFrame, DataFrame, tuple[Figure, Axes] | None]:
        """Compute pairwise correlation matrix WITH p-values.

        Pandas ``.corr()`` provides no p-values. This method computes both the correlation
        coefficients and their corresponding p-values using ``scipy.stats``.

        Args:
            method: Correlation method — "pearson", "spearman", or "kendall". Default "pearson".
            plot: Whether to produce a heatmap. Default True.
            **kwargs: Passed to ``_adjust_axes_labels``.

        Returns:
            tuple: (corr_df, pvalue_df, (fig, ax)) or (corr_df, pvalue_df, None) if plot=False.

        Examples:
            >>> import numpy as np
            >>> from statista.time_series import TimeSeries

            Pearson correlation matrix for three independent series:

            >>> np.random.seed(42)
            >>> ts = TimeSeries(np.random.randn(100, 3), columns=["A", "B", "C"])
            >>> corr, pvals, _ = ts.correlation_matrix(plot=False)
            >>> round(float(corr.loc["A", "A"]), 4)
            1.0
            >>> round(float(corr.loc["A", "B"]), 4)
            -0.0486
            >>> round(float(pvals.loc["A", "B"]), 4)
            0.6309

            Spearman rank correlation on the same data:

            >>> corr_s, pvals_s, _ = ts.correlation_matrix(method="spearman", plot=False)
            >>> round(float(corr_s.loc["A", "B"]), 4)
            -0.0662
            >>> round(float(pvals_s.loc["A", "B"]), 4)
            0.5131
        """
        corr_funcs = {"pearson": pearsonr, "spearman": spearmanr, "kendall": kendalltau}
        if method not in corr_funcs:
            raise ValueError(
                f"Unknown method '{method}'. Choose from 'pearson', 'spearman', 'kendall'."
            )

        cols = list(self.columns)
        corr_df = DataFrame(np.nan, index=cols, columns=cols)
        pval_df = DataFrame(np.nan, index=cols, columns=cols)
        func = corr_funcs[method]

        for i, c1 in enumerate(cols):
            for j, c2 in enumerate(cols):
                if i == j:
                    corr_df.loc[c1, c2] = 1.0
                    pval_df.loc[c1, c2] = 0.0
                elif i < j:
                    d1 = self[c1].dropna()
                    d2 = self[c2].dropna()
                    common = d1.index.intersection(d2.index)
                    r, p = func(d1.loc[common], d2.loc[common])
                    corr_df.loc[c1, c2] = r
                    corr_df.loc[c2, c1] = r
                    pval_df.loc[c1, c2] = p
                    pval_df.loc[c2, c1] = p

        fig_ax: tuple[Figure, Axes] | None = None
        if plot and len(cols) >= 2:
            fig, ax = self._get_ax_fig(**kwargs)
            kwargs.pop("fig", None)
            kwargs.pop("ax", None)

            corr_arr = corr_df.values.astype(float)
            im = ax.imshow(corr_arr, cmap="RdBu_r", vmin=-1, vmax=1, aspect="equal")
            plt.colorbar(im, ax=ax, shrink=0.8)

            ax.set_xticks(range(len(cols)))
            ax.set_yticks(range(len(cols)))
            ax.set_xticklabels(cols, rotation=45, ha="right")
            ax.set_yticklabels(cols)

            for ii in range(len(cols)):
                for jj in range(len(cols)):
                    r_val = corr_arr[ii, jj]
                    p_val = float(pval_df.iloc[ii, jj])
                    sig = (
                        "***"
                        if p_val < 0.001
                        else "**" if p_val < 0.01 else "*" if p_val < 0.05 else ""
                    )
                    ax.text(
                        jj,
                        ii,
                        f"{r_val:.2f}{sig}",
                        ha="center",
                        va="center",
                        fontsize=9,
                    )

            if "title" not in kwargs:
                kwargs["title"] = f"Correlation Matrix ({method})"
            ax = self._adjust_axes_labels(ax, **kwargs)
            plt.show()
            fig_ax = (fig, ax)

        return corr_df, pval_df, fig_ax

    def ljung_box(
        self,
        lags: int = 10,
        column: str = None,
    ) -> DataFrame:
        """Ljung-Box test for autocorrelation (white noise test).

        Tests whether autocorrelations of a series are significantly different from zero.
        Implemented from scratch using numpy/scipy (no statsmodels dependency).

        Args:
            lags: Number of lags to test. Default 10.
            column: Column to test. If None, tests all columns and stacks results.

        Returns:
            pandas.DataFrame: With columns ``lb_stat`` and ``lb_pvalue`` for each lag.

        Examples:
            >>> import numpy as np
            >>> from statista.time_series import TimeSeries

            White noise should produce non-significant p-values:

            >>> np.random.seed(42)
            >>> ts = TimeSeries(np.random.randn(200))
            >>> result = ts.ljung_box(lags=5)
            >>> result.shape
            (5, 2)
            >>> round(float(result.iloc[0]["lb_stat"]), 4)
            0.5399
            >>> round(float(result.iloc[0]["lb_pvalue"]), 4)
            0.4625

            Real hydrological data:

            >>> data = np.loadtxt("examples/data/time_series1.txt")
            >>> ts = TimeSeries(data)
            >>> result = ts.ljung_box(lags=5)
            >>> round(float(result.iloc[0]["lb_stat"]), 4)
            1.6264
            >>> round(float(result.iloc[0]["lb_pvalue"]), 4)
            0.2022

        References:
            Ljung, G. M. and Box, G. E. P. (1978). On a measure of lack of fit in time series models.
            Biometrika, 65(2), 297-303.
        """
        cols = [column] if column is not None else list(self.columns)

        frames = []
        for col in cols:
            data = self[col].dropna().values
            n = len(data)
            acf_vals = _compute_acf(data, nlags=lags, fft=True)
            # acf_vals[0] = 1.0 (lag 0), we need lags 1..lags
            rho = acf_vals[1:]

            lb_stats = np.zeros(lags)
            lb_pvalues = np.zeros(lags)
            for k in range(lags):
                q = n * (n + 2) * np.sum(rho[: k + 1] ** 2 / (n - np.arange(1, k + 2)))
                lb_stats[k] = q
                lb_pvalues[k] = 1.0 - chi2.cdf(q, df=k + 1)

            result = DataFrame(
                {"lb_stat": lb_stats, "lb_pvalue": lb_pvalues},
                index=np.arange(1, lags + 1),
            )
            if len(cols) > 1:
                result.insert(0, "column", col)
            frames.append(result)

        import pandas as pd

        combined = (
            frames[0] if len(frames) == 1 else pd.concat(frames, ignore_index=True)
        )
        return combined
acf(nlags=40, alpha=DEFAULT_ALPHA, fft=True, column=None, plot=True, **kwargs) #

Compute and optionally plot the autocorrelation function.

Parameters:

Name Type Description Default
nlags int

Number of lags to compute. Default 40.

40
alpha float

Significance level for confidence bands. Default 0.05.

DEFAULT_ALPHA
fft bool

Use FFT for computation (faster for long series). Default True.

True
column str

Column name. If None and single-column, uses that column. For multi-column without column specified, computes per column.

None
plot bool

Whether to produce a plot. Default True.

True
**kwargs Any

Passed to _adjust_axes_labels (title, xlabel, ylabel, etc.).

{}

Returns:

Name Type Description
tuple tuple[ndarray | dict[str, ndarray], tuple[Figure, Axes] | None]

(acf_values, (fig, ax)) or (acf_values, None) if plot=False. For multi-column: acf_values is a dict mapping column names to arrays.

Examples:

>>> import numpy as np
>>> from statista.time_series import TimeSeries

ACF of white noise (lag-0 is always 1.0, other lags near zero):

>>> np.random.seed(42)
>>> ts = TimeSeries(np.random.randn(200))
>>> acf_vals, _ = ts.acf(nlags=10, plot=False)
>>> round(float(acf_vals[0]), 4)
1.0
>>> round(float(acf_vals[1]), 4)
-0.0516
>>> len(acf_vals)
11

ACF of real hydrological data:

>>> data = np.loadtxt("examples/data/time_series1.txt")
>>> ts = TimeSeries(data)
>>> acf_vals, _ = ts.acf(nlags=5, plot=False)
>>> round(float(acf_vals[0]), 4)
1.0
>>> round(float(acf_vals[1]), 4)
0.2324
Source code in src/statista/time_series/correlation.py
def acf(
    self,
    nlags: int = 40,
    alpha: float = DEFAULT_ALPHA,
    fft: bool = True,
    column: str = None,
    plot: bool = True,
    **kwargs: Any,
) -> tuple[np.ndarray | dict[str, np.ndarray], tuple[Figure, Axes] | None]:
    """Compute and optionally plot the autocorrelation function.

    Args:
        nlags: Number of lags to compute. Default 40.
        alpha: Significance level for confidence bands. Default 0.05.
        fft: Use FFT for computation (faster for long series). Default True.
        column: Column name. If None and single-column, uses that column.
            For multi-column without column specified, computes per column.
        plot: Whether to produce a plot. Default True.
        **kwargs: Passed to ``_adjust_axes_labels`` (title, xlabel, ylabel, etc.).

    Returns:
        tuple: (acf_values, (fig, ax)) or (acf_values, None) if plot=False.
            For multi-column: acf_values is a dict mapping column names to arrays.

    Examples:
        >>> import numpy as np
        >>> from statista.time_series import TimeSeries

        ACF of white noise (lag-0 is always 1.0, other lags near zero):

        >>> np.random.seed(42)
        >>> ts = TimeSeries(np.random.randn(200))
        >>> acf_vals, _ = ts.acf(nlags=10, plot=False)
        >>> round(float(acf_vals[0]), 4)
        1.0
        >>> round(float(acf_vals[1]), 4)
        -0.0516
        >>> len(acf_vals)
        11

        ACF of real hydrological data:

        >>> data = np.loadtxt("examples/data/time_series1.txt")
        >>> ts = TimeSeries(data)
        >>> acf_vals, _ = ts.acf(nlags=5, plot=False)
        >>> round(float(acf_vals[0]), 4)
        1.0
        >>> round(float(acf_vals[1]), 4)
        0.2324
    """
    cols = _resolve_columns(self.columns, column)

    acf_results: dict[str, np.ndarray] = {}
    for col in cols:
        data = self[col].dropna().values
        acf_results[col] = _compute_acf(data, nlags=nlags, fft=fft)

    fig_ax: tuple[Figure, Axes] | None = None
    if plot:
        fig_ax = _plot_acf_pacf(
            acf_results,
            len(self[cols[0]].dropna()),
            alpha,
            "ACF",
            self._get_ax_fig,
            **kwargs,
        )

    single_result: np.ndarray | dict[str, np.ndarray] = (
        acf_results[cols[0]] if len(cols) == 1 else acf_results
    )
    return single_result, fig_ax
pacf(nlags=40, alpha=DEFAULT_ALPHA, column=None, plot=True, **kwargs) #

Compute and optionally plot the partial autocorrelation function.

Uses the Levinson-Durbin recursion to compute PACF from ACF values.

Parameters:

Name Type Description Default
nlags int

Number of lags to compute. Default 40.

40
alpha float

Significance level for confidence bands. Default 0.05.

DEFAULT_ALPHA
column str

Column name. If None and single-column, uses that column.

None
plot bool

Whether to produce a plot. Default True.

True
**kwargs Any

Passed to _adjust_axes_labels.

{}

Returns:

Name Type Description
tuple tuple[ndarray | dict[str, ndarray], tuple[Figure, Axes] | None]

(pacf_values, (fig, ax)) or (pacf_values, None) if plot=False.

Examples:

>>> import numpy as np
>>> from statista.time_series import TimeSeries

PACF of white noise (lag-0 is always 1.0):

>>> np.random.seed(42)
>>> ts = TimeSeries(np.random.randn(200))
>>> pacf_vals, _ = ts.pacf(nlags=10, plot=False)
>>> round(float(pacf_vals[0]), 4)
1.0
>>> round(float(pacf_vals[1]), 4)
-0.0516
>>> round(float(pacf_vals[2]), 4)
-0.0416

PACF of real hydrological data:

>>> data = np.loadtxt("examples/data/time_series1.txt")
>>> ts = TimeSeries(data)
>>> pacf_vals, _ = ts.pacf(nlags=5, plot=False)
>>> round(float(pacf_vals[0]), 4)
1.0
>>> round(float(pacf_vals[1]), 4)
0.2324
Source code in src/statista/time_series/correlation.py
def pacf(
    self,
    nlags: int = 40,
    alpha: float = DEFAULT_ALPHA,
    column: str = None,
    plot: bool = True,
    **kwargs: Any,
) -> tuple[np.ndarray | dict[str, np.ndarray], tuple[Figure, Axes] | None]:
    """Compute and optionally plot the partial autocorrelation function.

    Uses the Levinson-Durbin recursion to compute PACF from ACF values.

    Args:
        nlags: Number of lags to compute. Default 40.
        alpha: Significance level for confidence bands. Default 0.05.
        column: Column name. If None and single-column, uses that column.
        plot: Whether to produce a plot. Default True.
        **kwargs: Passed to ``_adjust_axes_labels``.

    Returns:
        tuple: (pacf_values, (fig, ax)) or (pacf_values, None) if plot=False.

    Examples:
        >>> import numpy as np
        >>> from statista.time_series import TimeSeries

        PACF of white noise (lag-0 is always 1.0):

        >>> np.random.seed(42)
        >>> ts = TimeSeries(np.random.randn(200))
        >>> pacf_vals, _ = ts.pacf(nlags=10, plot=False)
        >>> round(float(pacf_vals[0]), 4)
        1.0
        >>> round(float(pacf_vals[1]), 4)
        -0.0516
        >>> round(float(pacf_vals[2]), 4)
        -0.0416

        PACF of real hydrological data:

        >>> data = np.loadtxt("examples/data/time_series1.txt")
        >>> ts = TimeSeries(data)
        >>> pacf_vals, _ = ts.pacf(nlags=5, plot=False)
        >>> round(float(pacf_vals[0]), 4)
        1.0
        >>> round(float(pacf_vals[1]), 4)
        0.2324
    """
    cols = _resolve_columns(self.columns, column)

    pacf_results: dict[str, np.ndarray] = {}
    for col in cols:
        data = self[col].dropna().values
        effective_nlags = min(nlags, len(data) // 2 - 1)
        acf_vals = _compute_acf(data, nlags=effective_nlags, fft=True)
        pacf_results[col] = _levinson_durbin_pacf(acf_vals)

    fig_ax: tuple[Figure, Axes] | None = None
    if plot:
        fig_ax = _plot_acf_pacf(
            pacf_results,
            len(self[cols[0]].dropna()),
            alpha,
            "PACF",
            self._get_ax_fig,
            **kwargs,
        )

    single_result: np.ndarray | dict[str, np.ndarray] = (
        pacf_results[cols[0]] if len(cols) == 1 else pacf_results
    )
    return single_result, fig_ax
cross_correlation(col_x, col_y, nlags=40, plot=True, **kwargs) #

Compute the cross-correlation function between two columns.

Parameters:

Name Type Description Default
col_x str

First column name.

required
col_y str

Second column name.

required
nlags int

Number of lags. Default 40.

40
plot bool

Whether to produce a plot. Default True.

True
**kwargs Any

Passed to _adjust_axes_labels.

{}

Returns:

Name Type Description
tuple tuple[ndarray, tuple[Figure, Axes] | None]

(ccf_values, (fig, ax)) or (ccf_values, None) if plot=False.

Examples:

>>> import numpy as np
>>> from statista.time_series import TimeSeries

Cross-correlation between independent random series (near zero):

>>> np.random.seed(42)
>>> data = np.column_stack([np.random.randn(100), np.random.randn(100)])
>>> ts = TimeSeries(data, columns=["A", "B"])
>>> ccf_vals, _ = ts.cross_correlation("A", "B", nlags=5, plot=False)
>>> round(float(ccf_vals[0]), 4)
-0.1364
>>> len(ccf_vals)
6

Cross-correlation between correlated series (strong at lag 0):

>>> np.random.seed(42)
>>> x = np.random.randn(100)
>>> y = 0.8 * x + 0.2 * np.random.randn(100)
>>> ts = TimeSeries(np.column_stack([x, y]), columns=["X", "Y"])
>>> ccf_vals, _ = ts.cross_correlation("X", "Y", nlags=5, plot=False)
>>> round(float(ccf_vals[0]), 4)
0.9655
Source code in src/statista/time_series/correlation.py
def cross_correlation(
    self,
    col_x: str,
    col_y: str,
    nlags: int = 40,
    plot: bool = True,
    **kwargs: Any,
) -> tuple[np.ndarray, tuple[Figure, Axes] | None]:
    """Compute the cross-correlation function between two columns.

    Args:
        col_x: First column name.
        col_y: Second column name.
        nlags: Number of lags. Default 40.
        plot: Whether to produce a plot. Default True.
        **kwargs: Passed to ``_adjust_axes_labels``.

    Returns:
        tuple: (ccf_values, (fig, ax)) or (ccf_values, None) if plot=False.

    Examples:
        >>> import numpy as np
        >>> from statista.time_series import TimeSeries

        Cross-correlation between independent random series (near zero):

        >>> np.random.seed(42)
        >>> data = np.column_stack([np.random.randn(100), np.random.randn(100)])
        >>> ts = TimeSeries(data, columns=["A", "B"])
        >>> ccf_vals, _ = ts.cross_correlation("A", "B", nlags=5, plot=False)
        >>> round(float(ccf_vals[0]), 4)
        -0.1364
        >>> len(ccf_vals)
        6

        Cross-correlation between correlated series (strong at lag 0):

        >>> np.random.seed(42)
        >>> x = np.random.randn(100)
        >>> y = 0.8 * x + 0.2 * np.random.randn(100)
        >>> ts = TimeSeries(np.column_stack([x, y]), columns=["X", "Y"])
        >>> ccf_vals, _ = ts.cross_correlation("X", "Y", nlags=5, plot=False)
        >>> round(float(ccf_vals[0]), 4)
        0.9655
    """
    x = self[col_x].dropna().values
    y = self[col_y].dropna().values
    min_len = min(len(x), len(y))
    x, y = x[:min_len], y[:min_len]

    ccf_vals = _compute_ccf(x, y, nlags=nlags)

    fig_ax: tuple[Figure, Axes] | None = None
    if plot:
        fig, ax = self._get_ax_fig(**kwargs)
        kwargs.pop("fig", None)
        kwargs.pop("ax", None)

        lags = np.arange(len(ccf_vals))
        ax.vlines(lags, 0, ccf_vals, colors="steelblue", linewidth=1.5)
        ax.scatter(lags, ccf_vals, color="steelblue", s=15, zorder=5)
        ax.axhline(0, color="black", linewidth=0.5)

        ci = 1.96 / np.sqrt(min_len)
        ax.axhline(ci, color="red", linestyle="--", linewidth=0.7, label="95% CI")
        ax.axhline(-ci, color="red", linestyle="--", linewidth=0.7)

        peak_lag = int(np.argmax(np.abs(ccf_vals)))
        ax.annotate(
            f"max |r| at lag {peak_lag}",
            xy=(peak_lag, ccf_vals[peak_lag]),
            fontsize=9,
            color="red",
        )

        if "title" not in kwargs:
            kwargs["title"] = f"Cross-Correlation: {col_x} vs {col_y}"
        if "xlabel" not in kwargs:
            kwargs["xlabel"] = "Lag"
        if "ylabel" not in kwargs:
            kwargs["ylabel"] = "CCF"

        ax = self._adjust_axes_labels(ax, **kwargs)
        plt.show()
        fig_ax = (fig, ax)

    return ccf_vals, fig_ax
lag_plot(lag=1, column=None, **kwargs) #

Scatter plot of x(t) vs x(t-lag) for visual serial dependence check.

Parameters:

Name Type Description Default
lag int

Lag to use. Default 1.

1
column str

Column name. If None, uses first column.

None
**kwargs Any

Passed to _adjust_axes_labels.

{}

Returns:

Name Type Description
tuple tuple[Figure, Axes]

(Figure, Axes)

Examples:

>>> import numpy as np
>>> from statista.time_series import TimeSeries
>>> np.random.seed(42)
>>> ts = TimeSeries(np.random.randn(100))
>>> fig, ax = ts.lag_plot(lag=1)

Using real data with lag 2:

>>> data = np.loadtxt("examples/data/time_series1.txt")
>>> ts = TimeSeries(data)
>>> fig, ax = ts.lag_plot(lag=2)
Source code in src/statista/time_series/correlation.py
def lag_plot(
    self,
    lag: int = 1,
    column: str = None,
    **kwargs: Any,
) -> tuple[Figure, Axes]:
    """Scatter plot of x(t) vs x(t-lag) for visual serial dependence check.

    Args:
        lag: Lag to use. Default 1.
        column: Column name. If None, uses first column.
        **kwargs: Passed to ``_adjust_axes_labels``.

    Returns:
        tuple: (Figure, Axes)

    Examples:
        >>> import numpy as np  # doctest: +SKIP
        >>> from statista.time_series import TimeSeries  # doctest: +SKIP
        >>> np.random.seed(42)  # doctest: +SKIP
        >>> ts = TimeSeries(np.random.randn(100))  # doctest: +SKIP
        >>> fig, ax = ts.lag_plot(lag=1)  # doctest: +SKIP

        Using real data with lag 2:

        >>> data = np.loadtxt("examples/data/time_series1.txt")  # doctest: +SKIP
        >>> ts = TimeSeries(data)  # doctest: +SKIP
        >>> fig, ax = ts.lag_plot(lag=2)  # doctest: +SKIP
    """
    if column is None:
        column = self.columns[0]

    data = self[column].dropna().values
    x = data[:-lag]
    y = data[lag:]

    fig, ax = self._get_ax_fig(**kwargs)
    kwargs.pop("fig", None)
    kwargs.pop("ax", None)

    ax.scatter(
        x, y, alpha=0.5, s=10, color="steelblue", edgecolor="white", linewidth=0.3
    )

    r = np.corrcoef(x, y)[0, 1]
    ax.annotate(
        f"r = {r:.3f}",
        xy=(0.05, 0.95),
        xycoords="axes fraction",
        fontsize=11,
        va="top",
    )

    if "title" not in kwargs:
        kwargs["title"] = f"Lag Plot (lag={lag})"
    if "xlabel" not in kwargs:
        kwargs["xlabel"] = "x(t)"
    if "ylabel" not in kwargs:
        kwargs["ylabel"] = f"x(t+{lag})"

    ax = self._adjust_axes_labels(ax, **kwargs)
    plt.show()
    return fig, ax
correlation_matrix(method='pearson', plot=True, **kwargs) #

Compute pairwise correlation matrix WITH p-values.

Pandas .corr() provides no p-values. This method computes both the correlation coefficients and their corresponding p-values using scipy.stats.

Parameters:

Name Type Description Default
method str

Correlation method — "pearson", "spearman", or "kendall". Default "pearson".

'pearson'
plot bool

Whether to produce a heatmap. Default True.

True
**kwargs Any

Passed to _adjust_axes_labels.

{}

Returns:

Name Type Description
tuple tuple[DataFrame, DataFrame, tuple[Figure, Axes] | None]

(corr_df, pvalue_df, (fig, ax)) or (corr_df, pvalue_df, None) if plot=False.

Examples:

>>> import numpy as np
>>> from statista.time_series import TimeSeries

Pearson correlation matrix for three independent series:

>>> np.random.seed(42)
>>> ts = TimeSeries(np.random.randn(100, 3), columns=["A", "B", "C"])
>>> corr, pvals, _ = ts.correlation_matrix(plot=False)
>>> round(float(corr.loc["A", "A"]), 4)
1.0
>>> round(float(corr.loc["A", "B"]), 4)
-0.0486
>>> round(float(pvals.loc["A", "B"]), 4)
0.6309

Spearman rank correlation on the same data:

>>> corr_s, pvals_s, _ = ts.correlation_matrix(method="spearman", plot=False)
>>> round(float(corr_s.loc["A", "B"]), 4)
-0.0662
>>> round(float(pvals_s.loc["A", "B"]), 4)
0.5131
Source code in src/statista/time_series/correlation.py
def correlation_matrix(
    self,
    method: str = "pearson",
    plot: bool = True,
    **kwargs: Any,
) -> tuple[DataFrame, DataFrame, tuple[Figure, Axes] | None]:
    """Compute pairwise correlation matrix WITH p-values.

    Pandas ``.corr()`` provides no p-values. This method computes both the correlation
    coefficients and their corresponding p-values using ``scipy.stats``.

    Args:
        method: Correlation method — "pearson", "spearman", or "kendall". Default "pearson".
        plot: Whether to produce a heatmap. Default True.
        **kwargs: Passed to ``_adjust_axes_labels``.

    Returns:
        tuple: (corr_df, pvalue_df, (fig, ax)) or (corr_df, pvalue_df, None) if plot=False.

    Examples:
        >>> import numpy as np
        >>> from statista.time_series import TimeSeries

        Pearson correlation matrix for three independent series:

        >>> np.random.seed(42)
        >>> ts = TimeSeries(np.random.randn(100, 3), columns=["A", "B", "C"])
        >>> corr, pvals, _ = ts.correlation_matrix(plot=False)
        >>> round(float(corr.loc["A", "A"]), 4)
        1.0
        >>> round(float(corr.loc["A", "B"]), 4)
        -0.0486
        >>> round(float(pvals.loc["A", "B"]), 4)
        0.6309

        Spearman rank correlation on the same data:

        >>> corr_s, pvals_s, _ = ts.correlation_matrix(method="spearman", plot=False)
        >>> round(float(corr_s.loc["A", "B"]), 4)
        -0.0662
        >>> round(float(pvals_s.loc["A", "B"]), 4)
        0.5131
    """
    corr_funcs = {"pearson": pearsonr, "spearman": spearmanr, "kendall": kendalltau}
    if method not in corr_funcs:
        raise ValueError(
            f"Unknown method '{method}'. Choose from 'pearson', 'spearman', 'kendall'."
        )

    cols = list(self.columns)
    corr_df = DataFrame(np.nan, index=cols, columns=cols)
    pval_df = DataFrame(np.nan, index=cols, columns=cols)
    func = corr_funcs[method]

    for i, c1 in enumerate(cols):
        for j, c2 in enumerate(cols):
            if i == j:
                corr_df.loc[c1, c2] = 1.0
                pval_df.loc[c1, c2] = 0.0
            elif i < j:
                d1 = self[c1].dropna()
                d2 = self[c2].dropna()
                common = d1.index.intersection(d2.index)
                r, p = func(d1.loc[common], d2.loc[common])
                corr_df.loc[c1, c2] = r
                corr_df.loc[c2, c1] = r
                pval_df.loc[c1, c2] = p
                pval_df.loc[c2, c1] = p

    fig_ax: tuple[Figure, Axes] | None = None
    if plot and len(cols) >= 2:
        fig, ax = self._get_ax_fig(**kwargs)
        kwargs.pop("fig", None)
        kwargs.pop("ax", None)

        corr_arr = corr_df.values.astype(float)
        im = ax.imshow(corr_arr, cmap="RdBu_r", vmin=-1, vmax=1, aspect="equal")
        plt.colorbar(im, ax=ax, shrink=0.8)

        ax.set_xticks(range(len(cols)))
        ax.set_yticks(range(len(cols)))
        ax.set_xticklabels(cols, rotation=45, ha="right")
        ax.set_yticklabels(cols)

        for ii in range(len(cols)):
            for jj in range(len(cols)):
                r_val = corr_arr[ii, jj]
                p_val = float(pval_df.iloc[ii, jj])
                sig = (
                    "***"
                    if p_val < 0.001
                    else "**" if p_val < 0.01 else "*" if p_val < 0.05 else ""
                )
                ax.text(
                    jj,
                    ii,
                    f"{r_val:.2f}{sig}",
                    ha="center",
                    va="center",
                    fontsize=9,
                )

        if "title" not in kwargs:
            kwargs["title"] = f"Correlation Matrix ({method})"
        ax = self._adjust_axes_labels(ax, **kwargs)
        plt.show()
        fig_ax = (fig, ax)

    return corr_df, pval_df, fig_ax
ljung_box(lags=10, column=None) #

Ljung-Box test for autocorrelation (white noise test).

Tests whether autocorrelations of a series are significantly different from zero. Implemented from scratch using numpy/scipy (no statsmodels dependency).

Parameters:

Name Type Description Default
lags int

Number of lags to test. Default 10.

10
column str

Column to test. If None, tests all columns and stacks results.

None

Returns:

Type Description
DataFrame

pandas.DataFrame: With columns lb_stat and lb_pvalue for each lag.

Examples:

>>> import numpy as np
>>> from statista.time_series import TimeSeries

White noise should produce non-significant p-values:

>>> np.random.seed(42)
>>> ts = TimeSeries(np.random.randn(200))
>>> result = ts.ljung_box(lags=5)
>>> result.shape
(5, 2)
>>> round(float(result.iloc[0]["lb_stat"]), 4)
0.5399
>>> round(float(result.iloc[0]["lb_pvalue"]), 4)
0.4625

Real hydrological data:

>>> data = np.loadtxt("examples/data/time_series1.txt")
>>> ts = TimeSeries(data)
>>> result = ts.ljung_box(lags=5)
>>> round(float(result.iloc[0]["lb_stat"]), 4)
1.6264
>>> round(float(result.iloc[0]["lb_pvalue"]), 4)
0.2022
References

Ljung, G. M. and Box, G. E. P. (1978). On a measure of lack of fit in time series models. Biometrika, 65(2), 297-303.

Source code in src/statista/time_series/correlation.py
def ljung_box(
    self,
    lags: int = 10,
    column: str = None,
) -> DataFrame:
    """Ljung-Box test for autocorrelation (white noise test).

    Tests whether autocorrelations of a series are significantly different from zero.
    Implemented from scratch using numpy/scipy (no statsmodels dependency).

    Args:
        lags: Number of lags to test. Default 10.
        column: Column to test. If None, tests all columns and stacks results.

    Returns:
        pandas.DataFrame: With columns ``lb_stat`` and ``lb_pvalue`` for each lag.

    Examples:
        >>> import numpy as np
        >>> from statista.time_series import TimeSeries

        White noise should produce non-significant p-values:

        >>> np.random.seed(42)
        >>> ts = TimeSeries(np.random.randn(200))
        >>> result = ts.ljung_box(lags=5)
        >>> result.shape
        (5, 2)
        >>> round(float(result.iloc[0]["lb_stat"]), 4)
        0.5399
        >>> round(float(result.iloc[0]["lb_pvalue"]), 4)
        0.4625

        Real hydrological data:

        >>> data = np.loadtxt("examples/data/time_series1.txt")
        >>> ts = TimeSeries(data)
        >>> result = ts.ljung_box(lags=5)
        >>> round(float(result.iloc[0]["lb_stat"]), 4)
        1.6264
        >>> round(float(result.iloc[0]["lb_pvalue"]), 4)
        0.2022

    References:
        Ljung, G. M. and Box, G. E. P. (1978). On a measure of lack of fit in time series models.
        Biometrika, 65(2), 297-303.
    """
    cols = [column] if column is not None else list(self.columns)

    frames = []
    for col in cols:
        data = self[col].dropna().values
        n = len(data)
        acf_vals = _compute_acf(data, nlags=lags, fft=True)
        # acf_vals[0] = 1.0 (lag 0), we need lags 1..lags
        rho = acf_vals[1:]

        lb_stats = np.zeros(lags)
        lb_pvalues = np.zeros(lags)
        for k in range(lags):
            q = n * (n + 2) * np.sum(rho[: k + 1] ** 2 / (n - np.arange(1, k + 2)))
            lb_stats[k] = q
            lb_pvalues[k] = 1.0 - chi2.cdf(q, df=k + 1)

        result = DataFrame(
            {"lb_stat": lb_stats, "lb_pvalue": lb_pvalues},
            index=np.arange(1, lags + 1),
        )
        if len(cols) > 1:
            result.insert(0, "column", col)
        frames.append(result)

    import pandas as pd

    combined = (
        frames[0] if len(frames) == 1 else pd.concat(frames, ignore_index=True)
    )
    return combined