⚠️There's a newer version (0.3.4) of this package. Take me there.

fable

The R package fable provides methods and tools for displaying and analysing univariate time series forecasts including exponential smoothing via state space models and automatic ARIMA modelling. Data, model and forecast objects are all stored in a tidy format.

Installation

You can install the development version from Github

# install.packages("devtools")
devtools::install_github("tidyverts/fable")

Example

library(fable)
library(tsibbledata)
UKLungDeaths %>%
  ETS(log(mdeaths)) %>%
  forecast
#> # A tsibble: 24 x 3 [1M]
#>       index  mean distribution         
#>       <mth> <dbl> <dist>               
#>  1 1980 Jan 1832. t(N(7.5, sd = 0.098))
#>  2 1980 Feb 1854. t(N(7.5, sd = 0.098))
#>  3 1980 Mar 1732. t(N(7.5, sd = 0.097))
#>  4 1980 Apr 1444. t(N(7.3, sd = 0.094))
#>  5 1980 May 1155. t(N(7, sd = 0.092))  
#>  6 1980 Jun 1050. t(N(7, sd = 0.09))   
#>  7 1980 Jul 1000. t(N(6.9, sd = 0.09)) 
#>  8 1980 Aug  915. t(N(6.8, sd = 0.089))
#>  9 1980 Sep  915. t(N(6.8, sd = 0.089))
#> 10 1980 Oct 1081. t(N(7, sd = 0.091))  
#> # ... with 14 more rows

You can read more about the functionality of this package and the ideas behind it here: https://tidyverts.github.io/tidy-forecasting-principles/

Copy Link

Version

Down Chevron

Install

install.packages('fable')

Monthly Downloads

29,207

Version

0.0.0.9000

License

GPL-3

Issues

Pull Requests

Stars

Forks

Maintainer

Last Published

January 1st, 1970

Functions in fable (0.0.0.9000)