Tidy Time Series Analysis and Forecasting Workshop - rstudio::conf 2020

Tidy Time Series Analysis and Forecasting Workshop

1/27/20—1/28/20
9:00 AM-5:00 PM
2 Day Workshop

Rob Hyndman
Professor of Statistics
Monash University


It is becoming increasingly common for organizations to collect huge amounts of data over time, and existing time series analysis tools are not always suitable to handle the scale, frequency and structure of the data collected. In this workshop, we will look at some new packages and methods that have been developed to handle the analysis of large collections of time series.

On day 1, we will look at the tsibble data structure for flexibly managing collections of related time series. We will look at how to do data wrangling, data visualizations and exploratory data analysis. We will explore feature-based methods to explore time series data in high dimensions. A similar feature-based approach can be used to identify anomalous time series within a collection of time series, or to cluster or classify time series Primary packages for day 1 will be tsibble, lubridate and feast (along with the tidyverse of course).

Day 2 will be about forecasting. We will look at some classical time series models and how they are automated in the fable package. We will look at creating ensemble forecasts and hybrid forecasts, as well as some new forecasting methods that have performed well in large-scale forecasting competitions. Finally, we will look at forecast reconciliation, allowing millions of time series to be forecast in a relatively short time while accounting for constraints on how the series are related.

This course will be appropriate for you if you answer yes to these questions:

  1. Do you already use the tidyverse packages in R such as dplyr, tidyr, tibble and ggplot2?
  2. Do you need to analyse large collections of related time series?
  3. Would you like to learn how to use some new tidy tools for time series analysis including visualization, decomposition and forecasting?
4 Likes

Pre-work

Please make sure you have the required packages installed before you arrive. The following command will install the packages you need. Note that the fabletools package on CRAN is out-dated. We tried to get it updated a week ago, but it hasn't happened. So please use the code below to install it.

install.packages(c(
  "tidyverse",
  "fpp3",
  "GGally",
  "sugrrants"
))
install.packages("fabletools", repos = "https://tidyverts.org")
2 Likes

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.