Error while using SEATS decomposition in the seasonal package

This is my input and it gives me the error below the code. I don't understand how to fix this I've looked all over. If you have any tips I'd highly appreciate it!

y %>% seas() %>%
autoplot() +
ggtitle("Seats Decomposition")

Model used in SEATS is different: (0 1 1)

Hi, and welcome!

Please see the FAQ: What's a reproducible example (`reprex`) and how do I do one? Using a reprex, complete with representative data will attract quicker and more answers.

In this case, however, the first example from the seasonal::seas help page clearly shows the problem

library(seasonal)
library(ggplot2)
m <- seas(AirPassengers)
autoplot(m)
#> Error: Objects of type seas not supported by autoplot.

Created on 2020-04-06 by the reprex package (v0.3.0)

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.