You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are now interested in th eauto-correlation function (ACF). As seen before, time series display seaonal patterns.
503
-
[Autocorrelation](https://en.wikipedia.org/wiki/Autocorrelation) is the correlation of a signal with a delayed copy of itself as a function of delay. Informally, it is the similarity between observations of a random variable as a function of the time lag between them.
504
-
505
-
The idea is the AFC to be similar between the original dataset and the imputed one.
506
-
Fot the TEMP variable, one sees the good reconstruction for all the algorithms.
507
-
On th econtrary, for the PRES variable, all methods overestimates the autocorrelation of the variables, especially the RPCA one.
508
-
Finally, for the DEWP variable, the methods cannot impute to obtain a behavior close to the original: the autocorrelation decreases to linearly.
486
+
We are now interested in the auto-correlation function (ACF). As seen before, time series display seaonal patterns.
487
+
[Autocorrelation](https://en.wikipedia.org/wiki/Autocorrelation) is the correlation of a signal with a delayed copy of itself as a function of delay. It measures the similarity between observations of a random variable as a function of the time lag between them. The objective is to have an ACF to be similar between the original dataset and the imputed one.
509
488
510
489
```python
511
490
n_columns =len(df_plot.columns)
512
491
n_imputers =len(dict_imputers)
513
492
514
-
fig = plt.figure(figsize=(6* n_columns, 6))
493
+
fig = plt.figure(figsize=(9* n_columns, 6))
515
494
for i_col, col inenumerate(df_plot):
516
495
ax = fig.add_subplot(1, n_columns, i_col +1)
517
496
for name_imputer, df_imp in dfs_imputed_station.items():
@@ -521,6 +500,7 @@ for i_col, col in enumerate(df_plot):
0 commit comments