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
Added support for exogenous regressors in decomposition models.
Added support for generating data from combination models.
Forecast plots via autoplot.fbl_ts() and autolayer.fbl_ts() now support
the show_gap argument. This can be used to connect the historical observations
to the forecasts (#113).
Breaking changes
Decompositions are now treated as models.
To access the decomposed values, you will now have to use components().
For example, tourism %>% STL(Trips) is now tourism %>% model(STL(Trips)) %>% components().
This change allows for more flexible decomposition specifications, and better interfaces for decomposition modelling.
Bug fixes
Fixed select.mdl_df() usage with negative select values (#120).
Fixed features() for a tsibble with key variables but only one series.