-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
STL decomposition: odd behavior when season(period = 1)
#146
Comments
|
But isn't this an option used in your book to detect outliers? I got the idea to use |
Hmm. Yes, I'd forgotten that -- we do need a way to fit a non-seasonal STL when there would otherwise be a seasonal component. Setting In any case, the |
This is because The long term solution is to re-implement |
I saw the fall back to |
|
Closing as the misunderstanding seems resolved, and is now a duplicate of #62 |
Hello,
I was trying to change the degree of smoothness of the trend in an STL decomposition with no seasonal period.
Below the codes:
dcmp <- aus_production %>% model(STL(Beer ~ trend(window = 3) + season(period = 1)))
components(dcmp) %>% autoplot()
If I change to
trend(window = 33)
or any other number, there is no change in the output.Is this the expected behavior ? Shouldn't this result in different trend smoothness ?
The text was updated successfully, but these errors were encountered: