Learn R Programming

sweep

Extending broom to time series forecasting

The sweep package extends the broom tools (tidy, glance, and augment) for performing forecasts and time series analysis in the “tidyverse”. The package is geared towards “tidying” the forecast workflow used with Rob Hyndman’s forecast package.

Benefits

  • Designed for modeling and scaling forecasts using the the tidyverse tools in R for Data Science
  • Extends broom for model analysis (ARIMA, ETS, BATS, etc)
  • Tidies the forecast objects for easy plotting and “tidy” data manipulation
  • Integrates timetk to enable dates and datetimes (irregular time series) in the tidied forecast output

Tools

The package contains the following elements:

  1. model tidiers: sw_tidy, sw_glance, sw_augment, sw_tidy_decomp functions extend tidy, glance, and augment from the broom package specifically for models (ets(), Arima(), bats(), etc) used for forecasting.

  2. forecast tidier: sw_sweep converts a forecast object to a tibble that can be easily manipulated in the “tidyverse”.

Making forecasts in the tidyverse

sweep enables converting a forecast object to tibble. The result is ability to use dplyr, tidyr, and ggplot natively to manipulate, analyze and visualize forecasts.

Forecasting multiple time series groups at scale

Often forecasts are required on grouped data to analyse trends in sub-categories. The good news is scaling from one time series to many is easy with the various sw_ functions in combination with dplyr and purrr.

Forecasting multiple models for accuracy

A common goal in forecasting is to compare different forecast models against each other. sweep helps in this area as well.

broom extensions for forecasting

If you are familiar with broom, you know how useful it is for retrieving “tidy” format model components. sweep extends this benefit to the forecast package workflow with the following functions:

  • sw_tidy: Returns model coefficients (single column)
  • sw_glance: Returns accuracy statistics (single row)
  • sw_augment: Returns residuals
  • sw_tidy_decomp: Returns seasonal decompositions
  • sw_sweep: Returns tidy forecast outputs.

The compatibility chart is listed below.

Objectsw_tidy()sw_glance()sw_augment()sw_tidy_decomp()sw_sweep()
ar
arimaXXX
ArimaXXX
etsXXXX
baggedETS
batsXXXX
tbatsXXXX
nnetarXXX
stlX
HoltWintersXXXX
StructTSXXXX
tslmXXX
decomposeX
adf.testXX
Box.testXX
kpss.testXX
forecastX

Function Compatibility

Installation

Here’s how to get started.

Development version with latest features:

# install.packages("devtools")
devtools::install_github("business-science/sweep")

Further Information

The sweep package includes several vignettes to help users get up to speed quickly:

  • SW00 - Introduction to sweep
  • SW01 - Forecasting Time Series Groups in the tidyverse
  • SW02 - Forecasting Using Multiple Models

Copy Link

Version

Install

install.packages('sweep')

Monthly Downloads

2,176

Version

0.2.5

License

GPL (>= 3)

Issues

Pull Requests

Stars

Forks

Maintainer

Matt Dancho

Last Published

July 6th, 2023

Functions in sweep (0.2.5)

sw_tidy.default

Default tidying method
tidiers_StructTS

Tidying methods for StructTS (Error, Trend, Seasonal) / exponential smoothing modeling of time series
validate_index

Validates data frame has column named the same name as variable rename_index
tidiers_bats

Tidying methods for BATS and TBATS modeling of time series
tidiers_arima

Tidying methods for ARIMA modeling of time series
tidiers_decomposed_ts

Tidying methods for decomposed time series
tidiers_ets

Tidying methods for ETS (Error, Trend, Seasonal) exponential smoothing modeling of time series
tidiers_nnetar

Tidying methods for Nural Network Time Series models
tidiers_stl

Tidying methods for STL (Seasonal, Trend, Level) decomposition of time series
sw_tidy_decomp

Coerces decomposed time-series objects to tibble format.
tbats_string

Print the TBATS model parameters
bats_string

Print the BATS model parameters
bike_sales

Fictional sales data for bike shops purchasing Cannondale bikes
sw_glance.default

Default glance method
sw_glance

Construct a single row summary "glance" of a model, fit, or other object
reexports

Objects exported from other packages
tidiers_HoltWinters

Tidying methods for HoltWinters modeling of time series
sw_augment

Augment data according to a tidied model
sw_sweep

Tidy forecast objects
sw_augment_columns

Augments data
sw_augment.default

Default augment method
sw_tidy

Tidy the result of a time-series model into a summary tibble
add_index

Adds a sequential index column to a data frame
arima_string

Print the ARIMA model parameters
sweep_package

sweep: Extending broom to time series forecasting