Skip to content

CRAN v0.1.2

Compare
Choose a tag to compare
@mitchelloharawild mitchelloharawild released this 14 Feb 06:42

Improvements

  • Added MAAPE accuracy measure.
  • 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.
  • Fixed interpolated values not being back transformed (tidyverts/fable#202).
  • Fixed stream() causing issues with subsequent methods (#144).