The hardware and bandwidth for this mirror is donated by METANET, the Webhosting and Full Service-Cloud Provider.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]metanet.ch.
The R package fable provides a collection of commonly used univariate and multivariate time series forecasting models including exponential smoothing via state space models and automatic ARIMA modelling. These models work within the fable framework, which provides the tools to evaluate, visualise, and combine models in a workflow consistent with the tidyverse.
You can install the stable version from CRAN:
install.packages("fable")
You can install the development version from GitHub
# install.packages("remotes")
::install_github("tidyverts/fable") remotes
Installing this software requires a compiler
library(fable)
library(tsibble)
library(tsibbledata)
library(lubridate)
library(dplyr)
%>%
aus_retail filter(
%in% c("New South Wales", "Victoria"),
State == "Department stores"
Industry %>%
) model(
ets = ETS(box_cox(Turnover, 0.3)),
arima = ARIMA(log(Turnover)),
snaive = SNAIVE(Turnover)
%>%
) forecast(h = "2 years") %>%
autoplot(filter(aus_retail, year(Month) > 2010), level = NULL)
Questions about forecasting can be asked on Cross Validated.
Common questions about the fable package are often found on Stack Overflow. You can use this to ask for help if the question isn’t already answered. A minimally reproducible example that describes your issue is the best way to ask for help!
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.