All Projects → robjhyndman → Forecast

robjhyndman / Forecast

forecast package for R

Programming Languages

r
7636 projects

Projects that are alternatives of or similar to Forecast

Neural prophet
NeuralProphet - A simple forecasting model based on Neural Networks in PyTorch
Stars: ✭ 1,125 (+25.98%)
Mutual labels:  forecast, forecasting
fpp3package
All data sets required for the examples and exercises in the book "Forecasting: principles and practice" (3rd ed, 2020) by Rob J Hyndman and George Athanasopoulos <http://OTexts.org/fpp3/>. All packages required to run the examples are also loaded.
Stars: ✭ 93 (-89.59%)
Mutual labels:  cran, forecasting
Fpp3 Package
All data sets required for the examples and exercises in the book "Forecasting: principles and practice" (3rd ed, 2020) by Rob J Hyndman and George Athanasopoulos <http://OTexts.org/fpp3/>. All packages required to run the examples are also loaded.
Stars: ✭ 43 (-95.18%)
Mutual labels:  forecasting, cran
modeltime.ensemble
Time Series Ensemble Forecasting
Stars: ✭ 65 (-92.72%)
Mutual labels:  forecast, forecasting
foot
foot是一个集足球数据采集器,简单分析的项目.AI足球球探为程序全自动处理,全程无人为参与干预足球分析足球预测程序.程序根据各大指数多维度数据,结合作者多年足球分析经验,精雕细琢,集天地之灵气,汲日月之精华,历时七七四十九天,经Bug九九八十一个,编码而成.有兴趣的朋友,可以关注一下公众号AI球探(微信号ai00268).
Stars: ✭ 96 (-89.25%)
Mutual labels:  forecast, forecasting
demography
demography package for R
Stars: ✭ 44 (-95.07%)
Mutual labels:  cran, forecasting
Forecastml
An R package with Python support for multi-step-ahead forecasting with machine learning and deep learning algorithms
Stars: ✭ 101 (-88.69%)
Mutual labels:  forecast, forecasting
mlforecast
Scalable machine 🤖 learning for time series forecasting.
Stars: ✭ 96 (-89.25%)
Mutual labels:  forecast, 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 (-97.76%)
Mutual labels:  forecast, forecasting
magi
📈 high level wrapper for parallel univariate time series forecasting 📉
Stars: ✭ 17 (-98.1%)
Mutual labels:  forecast, forecasting
Timetk
A toolkit for working with time series in R
Stars: ✭ 371 (-58.45%)
Mutual labels:  forecast, forecasting
Awesome Project Ideas
Curated list of Machine Learning, NLP, Vision, Recommender Systems Project Ideas
Stars: ✭ 6,114 (+584.66%)
Mutual labels:  forecasting
Rio
A Swiss-Army Knife for Data I/O
Stars: ✭ 467 (-47.7%)
Mutual labels:  cran
Fivethirtyeight
R package of data and code behind the stories and interactives at FiveThirtyEight
Stars: ✭ 422 (-52.74%)
Mutual labels:  cran
Officer
👮 officer: office documents from R
Stars: ✭ 405 (-54.65%)
Mutual labels:  cran
Future
🚀 R package: future: Unified Parallel and Distributed Processing in R for Everyone
Stars: ✭ 735 (-17.69%)
Mutual labels:  cran
Web Traffic Forecasting
Kaggle | Web Traffic Forecasting 📈
Stars: ✭ 596 (-33.26%)
Mutual labels:  forecasting
Fable
Tidy time series forecasting
Stars: ✭ 398 (-55.43%)
Mutual labels:  forecasting
Sktime
A unified framework for machine learning with time series
Stars: ✭ 4,741 (+430.91%)
Mutual labels:  forecasting
Awesome Risk Quantification
A collection of awesome projects, blog posts, books, and talks on quantifying risk
Stars: ✭ 384 (-57%)
Mutual labels:  forecasting

forecast

R build status CRAN_Status_Badge cran checks Lifecycle: retired Downloads Licence

The R package forecast provides methods and tools for displaying and analysing univariate time series forecasts including exponential smoothing via state space models and automatic ARIMA modelling.

This package is now retired in favour of the fable package. The forecast package will remain in its current state, and maintained with bug fixes only. For the latest features and development, we recommend forecasting with the fable package.

Installation

You can install the stable version from CRAN.

install.packages('forecast', dependencies = TRUE)

You can install the development version from Github

# install.packages("remotes")
remotes::install_github("robjhyndman/forecast")

Usage

library(forecast)
library(ggplot2)

# ETS forecasts
USAccDeaths %>%
  ets() %>%
  forecast() %>%
  autoplot()

# Automatic ARIMA forecasts
WWWusage %>%
  auto.arima() %>%
  forecast(h=20) %>%
  autoplot()

# ARFIMA forecasts
library(fracdiff)
x <- fracdiff.sim( 100, ma=-.4, d=.3)$series
arfima(x) %>%
  forecast(h=30) %>%
  autoplot()

# Forecasting with STL
USAccDeaths %>%
  stlm(modelfunction=ar) %>%
  forecast(h=36) %>%
  autoplot()

AirPassengers %>%
  stlf(lambda=0) %>%
  autoplot()

USAccDeaths %>%
  stl(s.window='periodic') %>%
  forecast() %>%
  autoplot()

# TBATS forecasts
USAccDeaths %>%
  tbats() %>%
  forecast() %>%
  autoplot()

taylor %>%
  tbats() %>%
  forecast() %>%
  autoplot()

For more information

License

This package is free and open source software, licensed under GPL-3.

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].