autoplot.decomposed.ts: Plot time series decomposition components using ggplot
Description
Produces a ggplot object of seasonally decomposed time series for objects of
class “stl” (created with stl), class
“seas” (created with seas), or class
“decomposed.ts” (created with decompose).
# NOT RUN {library(ggplot2)
co2 %>% decompose %>% autoplot
nottem %>% stl(s.window='periodic') %>% autoplot
# }# NOT RUN {library(seasonal)
seas(USAccDeaths) %>% autoplot
# }# NOT RUN {# }