You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's stored in the model object, but this isn't intended for users. If needed I can expose it in the user accessible methods for the model. Are you trying to obtain the defaults for these windows?
Are you trying to obtain the defaults for these windows?
Yeah. Since in the example above I haven't defined a window for trend(), which according to the documentation depends on the period and window size of the seasons, I'm not really sure what was the chosen window.
but because this is an implementation of MSTL we have more than one season, each with its respective window and period. I would like to be able to retrieve the defaults picked in this case.
Another situation is when we set the window for trend (and the model extracts 2 seasonal components):
The default (NULL) will choose an appropriate default, for a dataset with one seasonal pattern this would be 11, the second larger seasonal window would be 15, then 19, 23, ... onwards.
Am I correct?
Nonetheless, I think that exposing this to the user would be beneficial, so that for example one could train a decomposition model in R, retrieve the values, and use them in another implementation for comparison, lets say in Python.
For STL, is there a way to retrieve the used window parameter values after fitting the model?
If we use the
str
function,we can find all the "learned" periods
but I can't find the other parameters such as the window size.
The text was updated successfully, but these errors were encountered: