I had a question on the theta method in the forecast
package in R
. I tried using the AirPassenger
example with thetaf()
, but it just provided a trend line without seasonality in the forecast. Does thetaf()
detect and forecast seasonality?
This is the R
code that I used:
library(forecast)
x.fit4 <- thetaf(AirPassengers, h=24)
plot(x.fit4)