Timeseries forecast with irregular input streams #971
Replies: 3 comments 8 replies
-
@emreguenduez you might be interested in watching this |
Beta Was this translation helpful? Give feedback.
-
The short term answer is we won't support this for a long time. I think it's already a hefty challenge us to support to regular spaced time series. If you really want support for this, then I would suggest looking at other libraries which cater to time series. There are many good ones available that will likely satisfy your needs :) As for what we could do, maybe the simplest approach would be to implement an aggregation mechanism. It takes as input a stream, and in return yields one element per day/hour/whatever. But this is a big topic and not something I'm inclined to personally dive into right now. |
Beta Was this translation helpful? Give feedback.
-
By the way, I suggest you check out this article if you haven't already :) |
Beta Was this translation helpful? Give feedback.
-
Forecasting time series with regularly spaced input vectors (timedelta between samples is always a constant, say 1 hour) is nice and good, but what happens when one has very irregular samples? E.g. first 10 points come in within the first 2 minutes, then 10 minutes gap, then another 3 samples, and so on.
Linking related comments:
Link related discussions:
Beta Was this translation helpful? Give feedback.
All reactions