All Projects → robjhyndman → Fpp3 Package

robjhyndman / 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.

Programming Languages

r
7636 projects

Projects that are alternatives of or similar to Fpp3 Package

Fredr
An R client for the Federal Reserve Economic Data (FRED) API
Stars: ✭ 61 (+41.86%)
Mutual labels:  data, cran
demography
demography package for R
Stars: ✭ 44 (+2.33%)
Mutual labels:  cran, forecasting
Opendata
CRAN OpenData Task View
Stars: ✭ 188 (+337.21%)
Mutual labels:  data, cran
Rio
A Swiss-Army Knife for Data I/O
Stars: ✭ 467 (+986.05%)
Mutual labels:  data, cran
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 (+116.28%)
Mutual labels:  cran, forecasting
Forecast
forecast package for R
Stars: ✭ 893 (+1976.74%)
Mutual labels:  forecasting, cran
Paralleldist
R Package: Parallel Distance Matrix Computation using Multiple Threads
Stars: ✭ 37 (-13.95%)
Mutual labels:  cran
Data Polygamy
Data Polygamy is a topology-based framework that allows users to query for statistically significant relationships between spatio-temporal data sets.
Stars: ✭ 39 (-9.3%)
Mutual labels:  data
Perhaps
A monad, perhaps.
Stars: ✭ 35 (-18.6%)
Mutual labels:  data
Us Polling Places
Standardized data on historical general election polling places in the United States.
Stars: ✭ 34 (-20.93%)
Mutual labels:  data
Chinese Xinhua
📙 中华新华字典数据库。包括歇后语,成语,词语,汉字。
Stars: ✭ 8,705 (+20144.19%)
Mutual labels:  data
Django Databrowse
Databrowse is a Django application that lets you browse your data.
Stars: ✭ 41 (-4.65%)
Mutual labels:  data
Rtrek
R package for Star Trek datasets and related R functions.
Stars: ✭ 39 (-9.3%)
Mutual labels:  data
D3 In Motion
Code examples and references for the course "D3.js in Motion"
Stars: ✭ 37 (-13.95%)
Mutual labels:  data
Digeds cat
This research seeks to examine best practice in the field of digital editions by collating relevant evidence in a detailed catalogue of extant digital projects.
Stars: ✭ 40 (-6.98%)
Mutual labels:  data
Auto Value Bundle
Extends Autovalue to extract data from a bundle into a value object.
Stars: ✭ 36 (-16.28%)
Mutual labels:  data
People
Curated information on all state legislators & governors.
Stars: ✭ 42 (-2.33%)
Mutual labels:  data
Apogee
Tools for dealing with APOGEE data
Stars: ✭ 34 (-20.93%)
Mutual labels:  data
Seek
For finding, sharing and exchanging Data, Models, Simulations and Processes in Science.
Stars: ✭ 38 (-11.63%)
Mutual labels:  data
Quilt
Quilt is a self-organizing data hub for S3
Stars: ✭ 1,007 (+2241.86%)
Mutual labels:  data

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