I am running models to forecast time series data, like the following:
models <- ts_data %>% model(
Arima = ARIMA(Members),
ETS = ETS(Members)
)
models
The result is a mable (model table) that shows <ETS(A,N,N)> as the model it chose. How do I get this value as a string so that I can put it in the title of a plot?: "ETS(A,N,N)". When I try to extract the description of the model, I get the specs, attributes, etc. I just want the description as a string. Any thoughts?