numbats / numbathack18

Repository for the NUMBAT local hackathon 2018
0 stars 0 forks source link

tsibble + fasster + hilo #7

Open earowang opened 6 years ago

earowang commented 6 years ago
mitchelloharawild commented 6 years ago

Perhaps a good place to start would be a lengthy discussion about how forecast objects should be structured for forecast 2.0 😄

mitchelloharawild commented 6 years ago

Adding to this, a vignette would be useful for fasster, once the API is confirmed.

earowang commented 6 years ago

Basic idea:

tsibble forecast

earowang commented 6 years ago

if a tsibble is a univariate time series, fasster returns a fasster model object. if it is multiple time series, fasster could return a table of model objects for each key. forecast() will gain a tbl_model and fasster (already implemented). Inside the forecast.tbl_model, it will call the forecast.fasster for each key. forcast.tbl_model returns a tbl_forecast.

tsibble will have support for tbl_model and tbl_forecast (a collection of models), but no intention to support a single model object. I think this way make the time series forecasting extensible for other developers.