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
I tried running the below code snippet on my data with 28 data points, no gaps. de_obj = DataExploration(freq='D', data_shift_truncate=False, is_log_transformed=False, fill_rate=0.8, sig_level=0.001) print(de_obj.min_ts_length) imputed_data, pre_prc = de_obj.profile(df) print(len(df))
However, I keep getting the error 'ErrorMessage': 'Due to a recent data gap, training is waiting for more data to populate' for pre_prc. From the source code online it seem that 'min_ts_length' by default is 21 for daily data, but even if I further lower it I still get the same error message.
I also created dummy data with 208 data points and the error is the same, so I assume this isn't really about the number of data points. Any help?