What if my time series ('ds') is a little noisy? #1372
-
Hi all, I have one per minute physical observations that I am training on. By the nature of things nothing is perfectly regular, so I have timestamps that vary slightly (say, up to a couple of seconds) from being exactly every 60 seconds. If I do autoregression, the code fills in missing dates (add_missing_dates_nan in df_utils.py) and NaN as y value. In this case this means that pretty much everything after the first datapoint becomes NaN. Is there a way to make a bit less picky or should I preprocess my data to get rid of the noise in ds? Thanks, Geza |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Yes, you are correct! Its better to preprocess the data, as NP will also be able to handle your data better and do better predictions. |
Beta Was this translation helpful? Give feedback.
Yes, you are correct! Its better to preprocess the data, as NP will also be able to handle your data better and do better predictions.