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 | |
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):
Source code in src\statista\time_series\seasonal.py
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):
Source code in src\statista\time_series\seasonal.py
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 |
{}
|
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
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 | |
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 ( |
'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 |
{}
|
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
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 | |
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
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 | |