powered by
Tidying methods for decomposed time series
# S3 method for decomposed.ts sw_tidy_decomp(x, timetk_idx = FALSE, rename_index = "index", ...)
sw_tidy_decomp() returns a tibble with the following time series attributes:
sw_tidy_decomp()
index: An index is either attempted to be extracted from the model or a sequential index is created for plotting purposes
index
season: The seasonal component
season
trend: The trend component
trend
random: The error component
random
seasadj: observed - season
seasadj
An object of class "decomposed.ts"
Used with sw_augment and sw_tidy_decomp. When TRUE, uses a timetk index (irregular, typically date or datetime) if present.
sw_augment
sw_tidy_decomp
TRUE
Used with sw_augment and sw_tidy_decomp. A string representing the name of the index generated.
Not used.
decompose()
library(dplyr) library(forecast) library(sweep) fit_decomposed <- USAccDeaths %>% decompose() sw_tidy_decomp(fit_decomposed)
Run the code above in your browser using DataLab