Learn R Programming

sweep (version 0.2.5)

tidiers_decomposed_ts: Tidying methods for decomposed time series

Description

Tidying methods for decomposed time series

Usage

# S3 method for decomposed.ts
sw_tidy_decomp(x, timetk_idx = FALSE, rename_index = "index", ...)

Value

sw_tidy_decomp() returns a tibble with the following time series attributes:

  • index: An index is either attempted to be extracted from the model or a sequential index is created for plotting purposes

  • season: The seasonal component

  • trend: The trend component

  • random: The error component

  • seasadj: observed - season

Arguments

x

An object of class "decomposed.ts"

timetk_idx

Used with sw_augment and sw_tidy_decomp. When TRUE, uses a timetk index (irregular, typically date or datetime) if present.

rename_index

Used with sw_augment and sw_tidy_decomp. A string representing the name of the index generated.

...

Not used.

See Also

Examples

Run this code
library(dplyr)
library(forecast)
library(sweep)

fit_decomposed <- USAccDeaths %>%
    decompose()

sw_tidy_decomp(fit_decomposed)

Run the code above in your browser using DataLab