All Projects → robjhyndman → fpp3package

robjhyndman / fpp3package

Licence: other
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.

Programming Languages

r
7636 projects

Projects that are alternatives of or similar to fpp3package

demography
demography package for R
Stars: ✭ 44 (-52.69%)
Mutual labels:  cran, forecasting
Forecast
forecast package for R
Stars: ✭ 893 (+860.22%)
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 (-53.76%)
Mutual labels:  cran, forecasting
TSP
Traveling Salesperson Problem - R package
Stars: ✭ 54 (-41.94%)
Mutual labels:  cran
ngramr
R package to query the Google Ngram Viewer
Stars: ✭ 46 (-50.54%)
Mutual labels:  cran
rcppfastfloat
Rcpp Bindings for the 'fastfloat' Header-Only Library
Stars: ✭ 18 (-80.65%)
Mutual labels:  cran
bruceR
📦 BRoadly Useful Convenient and Efficient R functions that BRing Users Concise and Elegant R data analyses.
Stars: ✭ 110 (+18.28%)
Mutual labels:  cran
rcpptoml
Rcpp Bindings to C++ parser for TOML files
Stars: ✭ 26 (-72.04%)
Mutual labels:  cran
verif
Software for verifying weather forecasts
Stars: ✭ 70 (-24.73%)
Mutual labels:  forecasting
ctrdata
Aggregate and analyse information on clinical trials from public registers
Stars: ✭ 26 (-72.04%)
Mutual labels:  cran
D3partitionR
R package to visualise interactively hierarchical data.
Stars: ✭ 36 (-61.29%)
Mutual labels:  cran
globals
🌐 R package: Identify Global Objects in R Expressions
Stars: ✭ 27 (-70.97%)
Mutual labels:  cran
Sales-Prediction
In depth analysis and forecasting of product sales based on the items, stores, transaction and other dependent variables like holidays and oil prices.
Stars: ✭ 56 (-39.78%)
Mutual labels:  forecasting
thinkr
Some tools for cleaning up messy 'Excel' files to be suitable for R
Stars: ✭ 21 (-77.42%)
Mutual labels:  cran
notebooks
Code examples for pyFTS
Stars: ✭ 40 (-56.99%)
Mutual labels:  forecasting
CoronaDash
COVID-19 spread shiny dashboard with a forecasting model, countries' trajectories graphs, and cluster analysis tools
Stars: ✭ 20 (-78.49%)
Mutual labels:  forecasting
msgtools
Tools for Developing Diagnostic Messages
Stars: ✭ 18 (-80.65%)
Mutual labels:  cran
Nowcasting
Nowcasting
Stars: ✭ 162 (+74.19%)
Mutual labels:  forecasting
Ramble
A R parser based on combinatory parsers.
Stars: ✭ 19 (-79.57%)
Mutual labels:  cran
Deep XF
Package towards building Explainable Forecasting and Nowcasting Models with State-of-the-art Deep Neural Networks and Dynamic Factor Model on Time Series data sets with single line of code. Also, provides utilify facility for time-series signal similarities matching, and removing noise from timeseries signals.
Stars: ✭ 83 (-10.75%)
Mutual labels:  forecasting

fpp3

CRAN status R build status Downloads

Overview

The fpp3 package contains data used in the book Forecasting: Principles and Practice (3rd edition) by Rob J Hyndman and George Athanasopoulos. It also loads several packages needed to do the analysis described in the book. These packages work with the tidyverse set of packages, sharing common data representations and API design.

Installation

You can install the stable version from CRAN.

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

You can install the development version from Github

# install.packages("remotes")
remotes::install_github("robjhyndman/fpp3-package")

Usage

library(fpp3) will load the following packages:

  • tibble, for tibbles, a modern re-imagining of data frames.
  • dplyr, for data manipulation.
  • tidyr, to easily tidy data using spread() and gather().
  • lubridate, for date/times.
  • ggplot2, for data visualisation.
  • tsibble, for tsibbles, a time series version of a tibble.
  • tsibbledata, various time series data sets in the form of tsibbles.
  • feasts, for features and statistics of time series.
  • fable, for fitting models and producing forecasts.

You also get a condensed summary of conflicts with other packages you have loaded:

library(fpp3)
#> ── Attaching packages ──────────────────────────────────────────── fpp3 0.4.0 ──
#> ✓ tibble      3.0.6          ✓ tsibble     0.9.4     
#> ✓ dplyr       1.0.3          ✓ tsibbledata 0.2.0.9000
#> ✓ tidyr       1.1.2          ✓ feasts      0.1.6.9000
#> ✓ lubridate   1.7.9.2        ✓ fable       0.3.0     
#> ✓ ggplot2     3.3.3
#> ── Conflicts ───────────────────────────────────────────────── fpp3_conflicts ──
#> x lubridate::date()    masks base::date()
#> x dplyr::filter()      masks stats::filter()
#> x tsibble::intersect() masks base::intersect()
#> x tsibble::interval()  masks lubridate::interval()
#> x dplyr::lag()         masks stats::lag()
#> x tsibble::setdiff()   masks base::setdiff()
#> x tsibble::union()     masks base::union()
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].