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)
If you are interested in learning from my advanced Time Series Analysis & Forecasting Course, then join my waitlist. The course is coming soon.
You will learn: