All Projects → tidyverts → Fable

tidyverts / Fable

Licence: other
Tidy time series forecasting

Programming Languages

r
7636 projects

Projects that are alternatives of or similar to Fable

time-series-autoencoder
📈 PyTorch dual-attention LSTM-autoencoder for multivariate Time Series 📈
Stars: ✭ 198 (-50.25%)
Mutual labels:  forecasting
Django Ledger
A bookkeeping & financial analysis engine for the Django Framework. UNDER ACTIVE DEVELOPMENT & NOT STABLE YET.
Stars: ✭ 253 (-36.43%)
Mutual labels:  forecasting
Orbit
A Python package for Bayesian forecasting with object-oriented design and probabilistic models under the hood.
Stars: ✭ 346 (-13.07%)
Mutual labels:  forecasting
TSForecasting
This repository contains the implementations related to the experiments of a set of publicly available datasets that are used in the time series forecasting research space.
Stars: ✭ 53 (-86.68%)
Mutual labels:  forecasting
Merlion
Merlion: A Machine Learning Framework for Time Series Intelligence
Stars: ✭ 2,368 (+494.97%)
Mutual labels:  forecasting
Tsstudio
Tools for time series analysis and forecasting
Stars: ✭ 283 (-28.89%)
Mutual labels:  forecasting
gpu accelerated forecasting modeltime gluonts
GPU-Accelerated Deep Learning for Time Series using Modeltime GluonTS (Learning Lab 53). Event sponsors: Saturn Cloud, NVIDIA, & Business Science.
Stars: ✭ 20 (-94.97%)
Mutual labels:  forecasting
Awesome Risk Quantification
A collection of awesome projects, blog posts, books, and talks on quantifying risk
Stars: ✭ 384 (-3.52%)
Mutual labels:  forecasting
googleAnalyticsProphetR
Applying Facebook's prophet on Google Analytics data
Stars: ✭ 30 (-92.46%)
Mutual labels:  forecasting
Atspy
AtsPy: Automated Time Series Models in Python (by @firmai)
Stars: ✭ 340 (-14.57%)
Mutual labels:  forecasting
demography
demography package for R
Stars: ✭ 44 (-88.94%)
Mutual labels:  forecasting
ReCOVER-COVID-19
Data-driven COVID-19 forecasts and detection of unreported cases
Stars: ✭ 18 (-95.48%)
Mutual labels:  forecasting
Pyaf
PyAF is an Open Source Python library for Automatic Time Series Forecasting built on top of popular pydata modules.
Stars: ✭ 289 (-27.39%)
Mutual labels:  forecasting
magi
📈 high level wrapper for parallel univariate time series forecasting 📉
Stars: ✭ 17 (-95.73%)
Mutual labels:  forecasting
Timetk
A toolkit for working with time series in R
Stars: ✭ 371 (-6.78%)
Mutual labels:  forecasting
foot
foot是一个集足球数据采集器,简单分析的项目.AI足球球探为程序全自动处理,全程无人为参与干预足球分析足球预测程序.程序根据各大指数多维度数据,结合作者多年足球分析经验,精雕细琢,集天地之灵气,汲日月之精华,历时七七四十九天,经Bug九九八十一个,编码而成.有兴趣的朋友,可以关注一下公众号AI球探(微信号ai00268).
Stars: ✭ 96 (-75.88%)
Mutual labels:  forecasting
Esrnn Gpu
PyTorch GPU implementation of the ES-RNN model for time series forecasting
Stars: ✭ 262 (-34.17%)
Mutual labels:  forecasting
Sktime
A unified framework for machine learning with time series
Stars: ✭ 4,741 (+1091.21%)
Mutual labels:  forecasting
Flow Forecast
Deep learning PyTorch library for time series forecasting, classification, and anomaly detection (originally for flood forecasting).
Stars: ✭ 368 (-7.54%)
Mutual labels:  forecasting
Luminaire
Luminaire is a python package that provides ML driven solutions for monitoring time series data.
Stars: ✭ 316 (-20.6%)
Mutual labels:  forecasting

fable

R build status Coverage status CRAN_Status_Badge Lifecycle: maturing

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.

Installation

The can install the stable version from CRAN:

install.packages("fable")

You can install the development version from GitHub

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

Installing this software requires a compiler

Example

library(fable)
library(tsibble)
library(tsibbledata)
library(lubridate)
library(dplyr)
aus_retail %>%
  filter(
    State %in% c("New South Wales", "Victoria"),
    Industry == "Department stores"
  ) %>% 
  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)

Learning to forecast with fable

  • The pkgdown site describes all models provided by fable, and how they are used: https://fable.tidyverts.org/
  • The forecasting principles and practices online textbook provides an introduction to time series forecasting using fable: https://otexts.com/fpp3/ (WIP)

Getting help

  • 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!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].