timetk: A toolkit for time series analysis in R
This tutorial focuses on 3 new functions for visualizing time series diagnostics:
plot_acf_diagnostics()
plot_seasonal_diagnostics()
plot_stl_diagnostics()
library(tidyverse)
library(timetk)
# Setup for the plotly charts (# FALSE returns ggplots)
interactive <- FALSE
m4_hourly %>%
group_by(id) %>%
plot_stl_diagnostics(
date, value,
.frequency = "auto", .trend = "auto",
.feature_set = c("observed", "season", "trend", "remainder"),
.interactive = interactive)
My Talk on High-Performance Time Series Forecasting
Time series is changing. Businesses now need 10,000+ time series forecasts every day.
High-Performance Forecasting Systems will save companies MILLIONS of dollars. Imagine what will happen to your career if you can provide your organization a “High-Performance Time Series Forecasting System” (HPTSF System).
I teach how to build a HPTFS System in my High-Performance Time Series Forecasting Course. If interested in learning Scalable High-Performance Forecasting Strategies then take my course. You will learn:
Modeltime
- 30+ Models (Prophet, ARIMA, XGBoost, Random Forest, & many more)GluonTS
(Competition Winners)