For STL, is there a way to retrieve the used window parameter values after fitting the model?
If we use the str function,
my_tsibble %>% model(STL(column ~ trend())) %>% str()
we can find all the "learned" periods
.. .. .. ..$ season_week:List of 2
.. .. .. .. ..$ period: num 168
.. .. .. .. ..$ base : num 0
.. .. .. ..$ season_day :List of 2
.. .. .. .. ..$ period: num 24
.. .. .. .. ..$ base : num 0
but I can't find the other parameters such as the window size.