Skip to content

Seasonal & Periodic Analysis#

statista.time_series.seasonal #

Seasonal and periodic analysis mixin for TimeSeries.

Seasonal #

Bases: _TimeSeriesStub

Seasonal and periodic analysis methods for TimeSeries.

Source code in src\statista\time_series\seasonal.py
 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
class Seasonal(_TimeSeriesStub):
    """Seasonal and periodic analysis methods for TimeSeries."""

    def monthly_stats(self, column: str = None) -> DataFrame:
        """Compute statistics grouped by month.

        Requires a DatetimeIndex. Computes mean, std, cv, min, max, median,
        and skewness for each month (1-12) and each column.

        Args:
            column: Column to analyze. If None, uses first column.

        Returns:
            pandas.DataFrame: Index is month (1-12), columns are statistic names.

        Raises:
            TypeError: If the index is not a DatetimeIndex.

        Examples:
            Compute monthly statistics from two years of daily data:

            >>> import numpy as np
            >>> import pandas as pd
            >>> from statista.time_series import TimeSeries
            >>> np.random.seed(42)
            >>> idx = pd.date_range("2000-01-01", periods=730, freq="D")
            >>> ts = TimeSeries(np.random.randn(730), index=idx)
            >>> result = ts.monthly_stats()
            >>> result.shape[0]
            12
            >>> sorted(result.columns.tolist())
            ['cv', 'max', 'mean', 'median', 'min', 'skewness', 'std']
            >>> round(float(result.loc[1, "mean"]), 4)
            -0.0473
            >>> round(float(result.loc[1, "std"]), 4)
            1.0097

            Access statistics for a specific month (July):

            >>> round(float(result.loc[7, "mean"]), 4)
            0.0745
        """
        import pandas as pd
        from scipy.stats import skew

        if column is None:
            column = self.columns[0]

        series = self[column].dropna()
        if not isinstance(series.index, pd.DatetimeIndex):
            raise TypeError("monthly_stats requires a DatetimeIndex.")

        grouped = series.groupby(series.index.month)

        rows = []
        for month, group in grouped:
            vals = group.values
            mean = float(np.mean(vals))
            std = float(np.std(vals, ddof=1))
            rows.append(
                {
                    "month": int(month),
                    "mean": mean,
                    "std": std,
                    "cv": std / mean if not np.isclose(mean, 0.0) else np.nan,
                    "min": float(np.min(vals)),
                    "max": float(np.max(vals)),
                    "median": float(np.median(vals)),
                    "skewness": (
                        float(skew(vals, bias=False)) if len(vals) >= 3 else np.nan
                    ),
                }
            )

        result = DataFrame(rows).set_index("month")
        return result

    def seasonal_subseries(
        self,
        period: int = 12,
        column: str = None,
        **kwargs: Any,
    ) -> tuple[Figure, Axes]:
        """Seasonal subseries plot.

        Plots each season (e.g., each month) as a separate mini time series,
        with horizontal lines at the season mean. Reveals seasonal patterns
        and trends within individual seasons.

        Args:
            period: Number of seasons per cycle. Default 12 (monthly).
            column: Column to plot. If None, uses first column.
            **kwargs: Passed to figure layout.

        Returns:
            tuple: (Figure, Axes)

        Examples:
            Monthly subseries plot for a sinusoidal signal:

            >>> import numpy as np  # doctest: +SKIP
            >>> from statista.time_series import TimeSeries  # doctest: +SKIP
            >>> ts = TimeSeries(np.sin(np.arange(120) * 2 * np.pi / 12))  # doctest: +SKIP
            >>> fig, ax = ts.seasonal_subseries(period=12)  # doctest: +SKIP

            Quarterly subseries (4 seasons per cycle):

            >>> ts2 = TimeSeries(np.random.randn(100))  # doctest: +SKIP
            >>> fig, ax = ts2.seasonal_subseries(period=4)  # doctest: +SKIP
        """
        if column is None:
            column = self.columns[0]

        data = self[column].dropna().values

        fig, axes = plt.subplots(
            1, period, figsize=(max(period * 1.5, 10), 4), sharey=True
        )
        if period == 1:
            axes = [axes]

        for s in range(period):
            season_data = data[s::period]
            ax = axes[s]
            ax.plot(
                range(len(season_data)),
                season_data,
                "o-",
                markersize=3,
                linewidth=0.8,
                color="steelblue",
            )
            ax.axhline(np.mean(season_data), color="red", linewidth=1, linestyle="--")
            ax.set_title(f"S{s + 1}", fontsize=9)
            ax.tick_params(labelsize=7)

        fig.suptitle(f"Seasonal Subseries — {column}", fontsize=12, fontweight="bold")
        plt.tight_layout()
        plt.show()
        return fig, axes[-1]

    def annual_cycle(
        self,
        column: str = None,
        **kwargs: Any,
    ) -> tuple[Figure, Axes]:
        """Overlay all years on a single Jan-Dec axis.

        Requires a DatetimeIndex. Plots each year as a gray line with the
        long-term monthly mean as a bold line.

        Args:
            column: Column to plot. If None, uses first column.
            **kwargs: Passed to ``_adjust_axes_labels``.

        Returns:
            tuple: (Figure, Axes)

        Raises:
            TypeError: If the index is not a DatetimeIndex.

        Examples:
            Overlay two years of daily data on one Jan-Dec axis:

            >>> import numpy as np  # doctest: +SKIP
            >>> import pandas as pd  # doctest: +SKIP
            >>> from statista.time_series import TimeSeries  # doctest: +SKIP
            >>> np.random.seed(42)  # doctest: +SKIP
            >>> idx = pd.date_range("2000-01-01", periods=730, freq="D")  # doctest: +SKIP
            >>> ts = TimeSeries(np.random.randn(730), index=idx)  # doctest: +SKIP
            >>> fig, ax = ts.annual_cycle()  # doctest: +SKIP

            Annual cycle with seasonal signal:

            >>> seasonal = np.sin(np.arange(730) * 2 * np.pi / 365)  # doctest: +SKIP
            >>> ts2 = TimeSeries(seasonal, index=idx)  # doctest: +SKIP
            >>> fig, ax = ts2.annual_cycle()  # doctest: +SKIP
        """
        import pandas as pd

        if column is None:
            column = self.columns[0]

        series = self[column].dropna()
        if not isinstance(series.index, pd.DatetimeIndex):
            raise TypeError("annual_cycle requires a DatetimeIndex.")

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

        # Plot each year as a gray line
        for year, group in series.groupby(series.index.year):
            month_means = group.groupby(group.index.month).mean()
            ax.plot(
                month_means.index,
                month_means.values,
                color="gray",
                alpha=0.3,
                linewidth=0.8,
            )

        # Bold mean line
        overall_monthly = series.groupby(series.index.month).mean()
        ax.plot(
            overall_monthly.index,
            overall_monthly.values,
            color="darkblue",
            linewidth=2.5,
            label="Mean",
        )

        ax.set_xticks(range(1, 13))
        ax.set_xticklabels(["J", "F", "M", "A", "M", "J", "J", "A", "S", "O", "N", "D"])

        if "title" not in kwargs:
            kwargs["title"] = f"Annual Cycle — {column}"
        if "xlabel" not in kwargs:
            kwargs["xlabel"] = "Month"
        if "ylabel" not in kwargs:
            kwargs["ylabel"] = "Value"

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

    def periodogram(
        self,
        column: str = None,
        method: str = "welch",
        fs: float = 1.0,
        plot: bool = True,
        **kwargs: Any,
    ) -> tuple[np.ndarray, np.ndarray, tuple[Figure, Axes] | None]:
        """Compute and optionally plot the power spectral density.

        Identifies dominant periodicities/frequencies in the time series.

        Args:
            column: Column to analyze. If None, uses first column.
            method: Spectral estimation method.
                - "periodogram": Raw periodogram (``scipy.signal.periodogram``).
                - "welch": Smoothed estimate (``scipy.signal.welch``). Default.
            fs: Sampling frequency. Default 1.0 (one sample per time unit).
            plot: Whether to produce a plot. Default True.
            **kwargs: Passed to ``_adjust_axes_labels``.

        Returns:
            tuple: (frequencies, power, (fig, ax)) or (frequencies, power, None).

        Examples:
            Detect a period-50 sinusoidal signal using Welch's method:

            >>> import numpy as np
            >>> from statista.time_series import TimeSeries
            >>> np.random.seed(42)
            >>> t = np.arange(500)
            >>> data = np.sin(2 * np.pi * t / 50) + np.random.randn(500) * 0.5
            >>> ts = TimeSeries(data)
            >>> freqs, power, _ = ts.periodogram(plot=False)
            >>> len(freqs)
            129
            >>> peak_idx = np.argmax(power[1:]) + 1
            >>> round(float(freqs[peak_idx]), 4)
            0.0195
            >>> round(float(1.0 / freqs[peak_idx]), 1)
            51.2

            Use the raw periodogram method for finer frequency resolution:

            >>> freqs2, power2, _ = ts.periodogram(method="periodogram", plot=False)
            >>> len(freqs2)
            251
            >>> peak_idx2 = np.argmax(power2[1:]) + 1
            >>> round(float(freqs2[peak_idx2]), 2)
            0.02
        """
        if column is None:
            column = self.columns[0]

        data = self[column].dropna().values

        if method == "welch":
            freqs, power = scipy_welch(data, fs=fs)
        elif method == "periodogram":
            freqs, power = scipy_periodogram(data, fs=fs)
        else:
            raise ValueError(
                f"Unknown method '{method}'. Choose from 'welch', 'periodogram'."
            )

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

            ax.semilogy(freqs, power, color="steelblue", linewidth=0.8)

            # Annotate dominant peak
            if len(power) > 1:
                peak_idx = np.argmax(power[1:]) + 1  # skip DC component
                peak_freq = freqs[peak_idx]
                peak_period = 1.0 / peak_freq if peak_freq > 0 else np.inf
                ax.axvline(peak_freq, color="red", linestyle="--", linewidth=0.7)
                ax.annotate(
                    f"Peak: T={peak_period:.1f}",
                    xy=(peak_freq, power[peak_idx]),
                    fontsize=9,
                    color="red",
                )

            if "title" not in kwargs:
                kwargs["title"] = f"Power Spectral Density — {column}"
            if "xlabel" not in kwargs:
                kwargs["xlabel"] = "Frequency"
            if "ylabel" not in kwargs:
                kwargs["ylabel"] = "Power"

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

        return freqs, power, fig_ax

    def seasonal_mann_kendall(
        self,
        period: int = 12,
        alpha: float = DEFAULT_ALPHA,
        column: str = None,
    ) -> DataFrame:
        """Seasonal Mann-Kendall trend test.

        Applies the Mann-Kendall test season-by-season and combines the results.
        The combined S statistic and its variance are summed across seasons
        (Hirsch et al., 1982).

        Args:
            period: Number of seasons per cycle (e.g., 12 for monthly). Default 12.
            alpha: Significance level. Default 0.05.
            column: Column to test. If None, tests all columns.

        Returns:
            pandas.DataFrame: One row per column with: trend, h, p_value, z,
                combined_s, combined_var_s, per_season_s (list).

        Examples:
            Detect an increasing trend in data with seasonal component:

            >>> import numpy as np
            >>> from statista.time_series import TimeSeries
            >>> np.random.seed(42)
            >>> t = np.arange(120)
            >>> data = 0.05 * t + 3 * np.sin(2 * np.pi * t / 12) + np.random.randn(120)
            >>> ts = TimeSeries(data)
            >>> result = ts.seasonal_mann_kendall(period=12)
            >>> result.loc["Series1", "trend"]
            'increasing'
            >>> round(float(result.loc["Series1", "z"]), 4)
            10.7669
            >>> round(float(result.loc["Series1", "combined_s"]), 1)
            418.0

            No trend detected in pure noise:

            >>> np.random.seed(42)
            >>> ts2 = TimeSeries(np.random.randn(120))
            >>> result2 = ts2.seasonal_mann_kendall(period=12)
            >>> result2.loc["Series1", "trend"]
            'no trend'
            >>> round(float(result2.loc["Series1", "p_value"]), 4)
            0.5186

        References:
            Hirsch, R.M., Slack, J.R. and Smith, R.A. (1982). Techniques of trend
            analysis for monthly water quality data. Water Resources Research, 18(1), 107-121.
        """
        from scipy.stats import norm as scipy_norm

        from statista.time_series.trend import _mk_score, _mk_variance

        cols = [column] if column is not None else list(self.columns)
        rows = []

        for col in cols:
            data = self[col].dropna().values

            combined_s = 0.0
            combined_var = 0.0
            per_season_s = []

            for s in range(period):
                season_data = data[s::period]
                if len(season_data) < 3:
                    per_season_s.append(0.0)
                    continue
                ns = len(season_data)
                s_val = _mk_score(season_data, ns)
                var_val = _mk_variance(season_data, ns)
                combined_s += s_val
                combined_var += var_val
                per_season_s.append(float(s_val))

            if combined_var > 0:
                if combined_s > 0:
                    z = (combined_s - 1) / np.sqrt(combined_var)
                elif combined_s < 0:
                    z = (combined_s + 1) / np.sqrt(combined_var)
                else:
                    z = 0.0
            else:
                z = 0.0

            p_value = 2.0 * (1.0 - scipy_norm.cdf(abs(z)))
            h = abs(z) > scipy_norm.ppf(1 - alpha / 2)

            if z > 0 and h:
                trend = "increasing"
            elif z < 0 and h:
                trend = "decreasing"
            else:
                trend = "no trend"

            rows.append(
                {
                    "column": col,
                    "trend": trend,
                    "h": bool(h),
                    "p_value": float(p_value),
                    "z": float(z),
                    "combined_s": float(combined_s),
                    "combined_var_s": float(combined_var),
                    "per_season_s": per_season_s,
                }
            )

        result_df = DataFrame(rows).set_index("column")
        return result_df
monthly_stats(column=None) #

Compute statistics grouped by month.

Requires a DatetimeIndex. Computes mean, std, cv, min, max, median, and skewness for each month (1-12) and each column.

Parameters:

Name Type Description Default
column str

Column to analyze. If None, uses first column.

None

Returns:

Type Description
DataFrame

pandas.DataFrame: Index is month (1-12), columns are statistic names.

Raises:

Type Description
TypeError

If the index is not a DatetimeIndex.

Examples:

Compute monthly statistics from two years of daily data:

>>> import numpy as np
>>> import pandas as pd
>>> from statista.time_series import TimeSeries
>>> np.random.seed(42)
>>> idx = pd.date_range("2000-01-01", periods=730, freq="D")
>>> ts = TimeSeries(np.random.randn(730), index=idx)
>>> result = ts.monthly_stats()
>>> result.shape[0]
12
>>> sorted(result.columns.tolist())
['cv', 'max', 'mean', 'median', 'min', 'skewness', 'std']
>>> round(float(result.loc[1, "mean"]), 4)
-0.0473
>>> round(float(result.loc[1, "std"]), 4)
1.0097

Access statistics for a specific month (July):

>>> round(float(result.loc[7, "mean"]), 4)
0.0745
Source code in src\statista\time_series\seasonal.py
def monthly_stats(self, column: str = None) -> DataFrame:
    """Compute statistics grouped by month.

    Requires a DatetimeIndex. Computes mean, std, cv, min, max, median,
    and skewness for each month (1-12) and each column.

    Args:
        column: Column to analyze. If None, uses first column.

    Returns:
        pandas.DataFrame: Index is month (1-12), columns are statistic names.

    Raises:
        TypeError: If the index is not a DatetimeIndex.

    Examples:
        Compute monthly statistics from two years of daily data:

        >>> import numpy as np
        >>> import pandas as pd
        >>> from statista.time_series import TimeSeries
        >>> np.random.seed(42)
        >>> idx = pd.date_range("2000-01-01", periods=730, freq="D")
        >>> ts = TimeSeries(np.random.randn(730), index=idx)
        >>> result = ts.monthly_stats()
        >>> result.shape[0]
        12
        >>> sorted(result.columns.tolist())
        ['cv', 'max', 'mean', 'median', 'min', 'skewness', 'std']
        >>> round(float(result.loc[1, "mean"]), 4)
        -0.0473
        >>> round(float(result.loc[1, "std"]), 4)
        1.0097

        Access statistics for a specific month (July):

        >>> round(float(result.loc[7, "mean"]), 4)
        0.0745
    """
    import pandas as pd
    from scipy.stats import skew

    if column is None:
        column = self.columns[0]

    series = self[column].dropna()
    if not isinstance(series.index, pd.DatetimeIndex):
        raise TypeError("monthly_stats requires a DatetimeIndex.")

    grouped = series.groupby(series.index.month)

    rows = []
    for month, group in grouped:
        vals = group.values
        mean = float(np.mean(vals))
        std = float(np.std(vals, ddof=1))
        rows.append(
            {
                "month": int(month),
                "mean": mean,
                "std": std,
                "cv": std / mean if not np.isclose(mean, 0.0) else np.nan,
                "min": float(np.min(vals)),
                "max": float(np.max(vals)),
                "median": float(np.median(vals)),
                "skewness": (
                    float(skew(vals, bias=False)) if len(vals) >= 3 else np.nan
                ),
            }
        )

    result = DataFrame(rows).set_index("month")
    return result
seasonal_subseries(period=12, column=None, **kwargs) #

Seasonal subseries plot.

Plots each season (e.g., each month) as a separate mini time series, with horizontal lines at the season mean. Reveals seasonal patterns and trends within individual seasons.

Parameters:

Name Type Description Default
period int

Number of seasons per cycle. Default 12 (monthly).

12
column str

Column to plot. If None, uses first column.

None
**kwargs Any

Passed to figure layout.

{}

Returns:

Name Type Description
tuple tuple[Figure, Axes]

(Figure, Axes)

Examples:

Monthly subseries plot for a sinusoidal signal:

>>> import numpy as np
>>> from statista.time_series import TimeSeries
>>> ts = TimeSeries(np.sin(np.arange(120) * 2 * np.pi / 12))
>>> fig, ax = ts.seasonal_subseries(period=12)

Quarterly subseries (4 seasons per cycle):

>>> ts2 = TimeSeries(np.random.randn(100))
>>> fig, ax = ts2.seasonal_subseries(period=4)
Source code in src\statista\time_series\seasonal.py
def seasonal_subseries(
    self,
    period: int = 12,
    column: str = None,
    **kwargs: Any,
) -> tuple[Figure, Axes]:
    """Seasonal subseries plot.

    Plots each season (e.g., each month) as a separate mini time series,
    with horizontal lines at the season mean. Reveals seasonal patterns
    and trends within individual seasons.

    Args:
        period: Number of seasons per cycle. Default 12 (monthly).
        column: Column to plot. If None, uses first column.
        **kwargs: Passed to figure layout.

    Returns:
        tuple: (Figure, Axes)

    Examples:
        Monthly subseries plot for a sinusoidal signal:

        >>> import numpy as np  # doctest: +SKIP
        >>> from statista.time_series import TimeSeries  # doctest: +SKIP
        >>> ts = TimeSeries(np.sin(np.arange(120) * 2 * np.pi / 12))  # doctest: +SKIP
        >>> fig, ax = ts.seasonal_subseries(period=12)  # doctest: +SKIP

        Quarterly subseries (4 seasons per cycle):

        >>> ts2 = TimeSeries(np.random.randn(100))  # doctest: +SKIP
        >>> fig, ax = ts2.seasonal_subseries(period=4)  # doctest: +SKIP
    """
    if column is None:
        column = self.columns[0]

    data = self[column].dropna().values

    fig, axes = plt.subplots(
        1, period, figsize=(max(period * 1.5, 10), 4), sharey=True
    )
    if period == 1:
        axes = [axes]

    for s in range(period):
        season_data = data[s::period]
        ax = axes[s]
        ax.plot(
            range(len(season_data)),
            season_data,
            "o-",
            markersize=3,
            linewidth=0.8,
            color="steelblue",
        )
        ax.axhline(np.mean(season_data), color="red", linewidth=1, linestyle="--")
        ax.set_title(f"S{s + 1}", fontsize=9)
        ax.tick_params(labelsize=7)

    fig.suptitle(f"Seasonal Subseries — {column}", fontsize=12, fontweight="bold")
    plt.tight_layout()
    plt.show()
    return fig, axes[-1]
annual_cycle(column=None, **kwargs) #

Overlay all years on a single Jan-Dec axis.

Requires a DatetimeIndex. Plots each year as a gray line with the long-term monthly mean as a bold line.

Parameters:

Name Type Description Default
column str

Column to plot. If None, uses first column.

None
**kwargs Any

Passed to _adjust_axes_labels.

{}

Returns:

Name Type Description
tuple tuple[Figure, Axes]

(Figure, Axes)

Raises:

Type Description
TypeError

If the index is not a DatetimeIndex.

Examples:

Overlay two years of daily data on one Jan-Dec axis:

>>> import numpy as np
>>> import pandas as pd
>>> from statista.time_series import TimeSeries
>>> np.random.seed(42)
>>> idx = pd.date_range("2000-01-01", periods=730, freq="D")
>>> ts = TimeSeries(np.random.randn(730), index=idx)
>>> fig, ax = ts.annual_cycle()

Annual cycle with seasonal signal:

>>> seasonal = np.sin(np.arange(730) * 2 * np.pi / 365)
>>> ts2 = TimeSeries(seasonal, index=idx)
>>> fig, ax = ts2.annual_cycle()
Source code in src\statista\time_series\seasonal.py
def annual_cycle(
    self,
    column: str = None,
    **kwargs: Any,
) -> tuple[Figure, Axes]:
    """Overlay all years on a single Jan-Dec axis.

    Requires a DatetimeIndex. Plots each year as a gray line with the
    long-term monthly mean as a bold line.

    Args:
        column: Column to plot. If None, uses first column.
        **kwargs: Passed to ``_adjust_axes_labels``.

    Returns:
        tuple: (Figure, Axes)

    Raises:
        TypeError: If the index is not a DatetimeIndex.

    Examples:
        Overlay two years of daily data on one Jan-Dec axis:

        >>> import numpy as np  # doctest: +SKIP
        >>> import pandas as pd  # doctest: +SKIP
        >>> from statista.time_series import TimeSeries  # doctest: +SKIP
        >>> np.random.seed(42)  # doctest: +SKIP
        >>> idx = pd.date_range("2000-01-01", periods=730, freq="D")  # doctest: +SKIP
        >>> ts = TimeSeries(np.random.randn(730), index=idx)  # doctest: +SKIP
        >>> fig, ax = ts.annual_cycle()  # doctest: +SKIP

        Annual cycle with seasonal signal:

        >>> seasonal = np.sin(np.arange(730) * 2 * np.pi / 365)  # doctest: +SKIP
        >>> ts2 = TimeSeries(seasonal, index=idx)  # doctest: +SKIP
        >>> fig, ax = ts2.annual_cycle()  # doctest: +SKIP
    """
    import pandas as pd

    if column is None:
        column = self.columns[0]

    series = self[column].dropna()
    if not isinstance(series.index, pd.DatetimeIndex):
        raise TypeError("annual_cycle requires a DatetimeIndex.")

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

    # Plot each year as a gray line
    for year, group in series.groupby(series.index.year):
        month_means = group.groupby(group.index.month).mean()
        ax.plot(
            month_means.index,
            month_means.values,
            color="gray",
            alpha=0.3,
            linewidth=0.8,
        )

    # Bold mean line
    overall_monthly = series.groupby(series.index.month).mean()
    ax.plot(
        overall_monthly.index,
        overall_monthly.values,
        color="darkblue",
        linewidth=2.5,
        label="Mean",
    )

    ax.set_xticks(range(1, 13))
    ax.set_xticklabels(["J", "F", "M", "A", "M", "J", "J", "A", "S", "O", "N", "D"])

    if "title" not in kwargs:
        kwargs["title"] = f"Annual Cycle — {column}"
    if "xlabel" not in kwargs:
        kwargs["xlabel"] = "Month"
    if "ylabel" not in kwargs:
        kwargs["ylabel"] = "Value"

    ax = self._adjust_axes_labels(ax, **kwargs)
    plt.show()
    return fig, ax
periodogram(column=None, method='welch', fs=1.0, plot=True, **kwargs) #

Compute and optionally plot the power spectral density.

Identifies dominant periodicities/frequencies in the time series.

Parameters:

Name Type Description Default
column str

Column to analyze. If None, uses first column.

None
method str

Spectral estimation method. - "periodogram": Raw periodogram (scipy.signal.periodogram). - "welch": Smoothed estimate (scipy.signal.welch). Default.

'welch'
fs float

Sampling frequency. Default 1.0 (one sample per time unit).

1.0
plot bool

Whether to produce a plot. Default True.

True
**kwargs Any

Passed to _adjust_axes_labels.

{}

Returns:

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

(frequencies, power, (fig, ax)) or (frequencies, power, None).

Examples:

Detect a period-50 sinusoidal signal using Welch's method:

>>> import numpy as np
>>> from statista.time_series import TimeSeries
>>> np.random.seed(42)
>>> t = np.arange(500)
>>> data = np.sin(2 * np.pi * t / 50) + np.random.randn(500) * 0.5
>>> ts = TimeSeries(data)
>>> freqs, power, _ = ts.periodogram(plot=False)
>>> len(freqs)
129
>>> peak_idx = np.argmax(power[1:]) + 1
>>> round(float(freqs[peak_idx]), 4)
0.0195
>>> round(float(1.0 / freqs[peak_idx]), 1)
51.2

Use the raw periodogram method for finer frequency resolution:

>>> freqs2, power2, _ = ts.periodogram(method="periodogram", plot=False)
>>> len(freqs2)
251
>>> peak_idx2 = np.argmax(power2[1:]) + 1
>>> round(float(freqs2[peak_idx2]), 2)
0.02
Source code in src\statista\time_series\seasonal.py
def periodogram(
    self,
    column: str = None,
    method: str = "welch",
    fs: float = 1.0,
    plot: bool = True,
    **kwargs: Any,
) -> tuple[np.ndarray, np.ndarray, tuple[Figure, Axes] | None]:
    """Compute and optionally plot the power spectral density.

    Identifies dominant periodicities/frequencies in the time series.

    Args:
        column: Column to analyze. If None, uses first column.
        method: Spectral estimation method.
            - "periodogram": Raw periodogram (``scipy.signal.periodogram``).
            - "welch": Smoothed estimate (``scipy.signal.welch``). Default.
        fs: Sampling frequency. Default 1.0 (one sample per time unit).
        plot: Whether to produce a plot. Default True.
        **kwargs: Passed to ``_adjust_axes_labels``.

    Returns:
        tuple: (frequencies, power, (fig, ax)) or (frequencies, power, None).

    Examples:
        Detect a period-50 sinusoidal signal using Welch's method:

        >>> import numpy as np
        >>> from statista.time_series import TimeSeries
        >>> np.random.seed(42)
        >>> t = np.arange(500)
        >>> data = np.sin(2 * np.pi * t / 50) + np.random.randn(500) * 0.5
        >>> ts = TimeSeries(data)
        >>> freqs, power, _ = ts.periodogram(plot=False)
        >>> len(freqs)
        129
        >>> peak_idx = np.argmax(power[1:]) + 1
        >>> round(float(freqs[peak_idx]), 4)
        0.0195
        >>> round(float(1.0 / freqs[peak_idx]), 1)
        51.2

        Use the raw periodogram method for finer frequency resolution:

        >>> freqs2, power2, _ = ts.periodogram(method="periodogram", plot=False)
        >>> len(freqs2)
        251
        >>> peak_idx2 = np.argmax(power2[1:]) + 1
        >>> round(float(freqs2[peak_idx2]), 2)
        0.02
    """
    if column is None:
        column = self.columns[0]

    data = self[column].dropna().values

    if method == "welch":
        freqs, power = scipy_welch(data, fs=fs)
    elif method == "periodogram":
        freqs, power = scipy_periodogram(data, fs=fs)
    else:
        raise ValueError(
            f"Unknown method '{method}'. Choose from 'welch', 'periodogram'."
        )

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

        ax.semilogy(freqs, power, color="steelblue", linewidth=0.8)

        # Annotate dominant peak
        if len(power) > 1:
            peak_idx = np.argmax(power[1:]) + 1  # skip DC component
            peak_freq = freqs[peak_idx]
            peak_period = 1.0 / peak_freq if peak_freq > 0 else np.inf
            ax.axvline(peak_freq, color="red", linestyle="--", linewidth=0.7)
            ax.annotate(
                f"Peak: T={peak_period:.1f}",
                xy=(peak_freq, power[peak_idx]),
                fontsize=9,
                color="red",
            )

        if "title" not in kwargs:
            kwargs["title"] = f"Power Spectral Density — {column}"
        if "xlabel" not in kwargs:
            kwargs["xlabel"] = "Frequency"
        if "ylabel" not in kwargs:
            kwargs["ylabel"] = "Power"

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

    return freqs, power, fig_ax
seasonal_mann_kendall(period=12, alpha=DEFAULT_ALPHA, column=None) #

Seasonal Mann-Kendall trend test.

Applies the Mann-Kendall test season-by-season and combines the results. The combined S statistic and its variance are summed across seasons (Hirsch et al., 1982).

Parameters:

Name Type Description Default
period int

Number of seasons per cycle (e.g., 12 for monthly). Default 12.

12
alpha float

Significance level. Default 0.05.

DEFAULT_ALPHA
column str

Column to test. If None, tests all columns.

None

Returns:

Type Description
DataFrame

pandas.DataFrame: One row per column with: trend, h, p_value, z, combined_s, combined_var_s, per_season_s (list).

Examples:

Detect an increasing trend in data with seasonal component:

>>> import numpy as np
>>> from statista.time_series import TimeSeries
>>> np.random.seed(42)
>>> t = np.arange(120)
>>> data = 0.05 * t + 3 * np.sin(2 * np.pi * t / 12) + np.random.randn(120)
>>> ts = TimeSeries(data)
>>> result = ts.seasonal_mann_kendall(period=12)
>>> result.loc["Series1", "trend"]
'increasing'
>>> round(float(result.loc["Series1", "z"]), 4)
10.7669
>>> round(float(result.loc["Series1", "combined_s"]), 1)
418.0

No trend detected in pure noise:

>>> np.random.seed(42)
>>> ts2 = TimeSeries(np.random.randn(120))
>>> result2 = ts2.seasonal_mann_kendall(period=12)
>>> result2.loc["Series1", "trend"]
'no trend'
>>> round(float(result2.loc["Series1", "p_value"]), 4)
0.5186
References

Hirsch, R.M., Slack, J.R. and Smith, R.A. (1982). Techniques of trend analysis for monthly water quality data. Water Resources Research, 18(1), 107-121.

Source code in src\statista\time_series\seasonal.py
def seasonal_mann_kendall(
    self,
    period: int = 12,
    alpha: float = DEFAULT_ALPHA,
    column: str = None,
) -> DataFrame:
    """Seasonal Mann-Kendall trend test.

    Applies the Mann-Kendall test season-by-season and combines the results.
    The combined S statistic and its variance are summed across seasons
    (Hirsch et al., 1982).

    Args:
        period: Number of seasons per cycle (e.g., 12 for monthly). Default 12.
        alpha: Significance level. Default 0.05.
        column: Column to test. If None, tests all columns.

    Returns:
        pandas.DataFrame: One row per column with: trend, h, p_value, z,
            combined_s, combined_var_s, per_season_s (list).

    Examples:
        Detect an increasing trend in data with seasonal component:

        >>> import numpy as np
        >>> from statista.time_series import TimeSeries
        >>> np.random.seed(42)
        >>> t = np.arange(120)
        >>> data = 0.05 * t + 3 * np.sin(2 * np.pi * t / 12) + np.random.randn(120)
        >>> ts = TimeSeries(data)
        >>> result = ts.seasonal_mann_kendall(period=12)
        >>> result.loc["Series1", "trend"]
        'increasing'
        >>> round(float(result.loc["Series1", "z"]), 4)
        10.7669
        >>> round(float(result.loc["Series1", "combined_s"]), 1)
        418.0

        No trend detected in pure noise:

        >>> np.random.seed(42)
        >>> ts2 = TimeSeries(np.random.randn(120))
        >>> result2 = ts2.seasonal_mann_kendall(period=12)
        >>> result2.loc["Series1", "trend"]
        'no trend'
        >>> round(float(result2.loc["Series1", "p_value"]), 4)
        0.5186

    References:
        Hirsch, R.M., Slack, J.R. and Smith, R.A. (1982). Techniques of trend
        analysis for monthly water quality data. Water Resources Research, 18(1), 107-121.
    """
    from scipy.stats import norm as scipy_norm

    from statista.time_series.trend import _mk_score, _mk_variance

    cols = [column] if column is not None else list(self.columns)
    rows = []

    for col in cols:
        data = self[col].dropna().values

        combined_s = 0.0
        combined_var = 0.0
        per_season_s = []

        for s in range(period):
            season_data = data[s::period]
            if len(season_data) < 3:
                per_season_s.append(0.0)
                continue
            ns = len(season_data)
            s_val = _mk_score(season_data, ns)
            var_val = _mk_variance(season_data, ns)
            combined_s += s_val
            combined_var += var_val
            per_season_s.append(float(s_val))

        if combined_var > 0:
            if combined_s > 0:
                z = (combined_s - 1) / np.sqrt(combined_var)
            elif combined_s < 0:
                z = (combined_s + 1) / np.sqrt(combined_var)
            else:
                z = 0.0
        else:
            z = 0.0

        p_value = 2.0 * (1.0 - scipy_norm.cdf(abs(z)))
        h = abs(z) > scipy_norm.ppf(1 - alpha / 2)

        if z > 0 and h:
            trend = "increasing"
        elif z < 0 and h:
            trend = "decreasing"
        else:
            trend = "no trend"

        rows.append(
            {
                "column": col,
                "trend": trend,
                "h": bool(h),
                "p_value": float(p_value),
                "z": float(z),
                "combined_s": float(combined_s),
                "combined_var_s": float(combined_var),
                "per_season_s": per_season_s,
            }
        )

    result_df = DataFrame(rows).set_index("column")
    return result_df