fpp3

CRAN status Travis build status

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:

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

library(fpp3)
#> ── Attaching packages ──────────────────────────────────────────────────── fpp3 0.3 ──
#> ✓ tibble      3.0.1          ✓ tsibble     0.9.0     
#> ✓ dplyr       1.0.0          ✓ tsibbledata 0.2.0.9000
#> ✓ tidyr       1.1.0          ✓ feasts      0.1.3     
#> ✓ lubridate   1.7.8          ✓ fable       0.2.0     
#> ✓ ggplot2     3.3.1
#> ── Conflicts ─────────────────────────────────────────────────────── fpp3_conflicts ──
#> x lubridate::date()   masks base::date()
#> x dplyr::filter()     masks stats::filter()
#> x tsibble::interval() masks lubridate::interval()
#> x dplyr::lag()        masks stats::lag()