I'm using R with the forecast package to build some time-series models.
Right now, i'm dealing with multiple-seasonality data, using the tbats function.
When a plot the fitted-model, i get a plot with the time-series components. My question is, what does exactly the slope component means? (I couldn't find it in the docs).
Code:
fit <- tbats(co2, use.trend= TRUE, use.box.cox = TRUE, seasonal.periods = c(12))
plot(fit)
Thanks!