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 | |
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 |
{}
|
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:
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
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 |
{}
|
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:
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
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 |
{}
|
Returns:
| Name | Type | Description |
|---|---|---|
tuple |
tuple[ndarray, tuple[Figure, Axes] | None]
|
(ccf_values, (fig, ax)) or (ccf_values, None) if plot=False. |
Examples:
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
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 | |
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 |
{}
|
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
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 |
{}
|
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:
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
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 | |
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 |
Examples:
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
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 | |