zemlyansky / arima

ARIMA, SARIMA, SARIMAX and AutoARIMA models for time series analysis and forecasting in the browser and Node.js
https://www.npmjs.com/arima
76 stars 18 forks source link

Can I train on more than one time series? #16

Open arthurwolf opened 1 year ago

arthurwolf commented 1 year ago

In the examples in the code, it looks like I can only feed it one time series (contrary to say a tensorflow neural net, where I feed it many time series).

What if my dataset is something like:

How do I get this library to provide useful predictions?

Would just "stitching"/concatenating the series together into a single series work? That somehow feels wrong.

Thanks for anyone with any idea about this.