Here's my code:
arimafit <- arima(x1, order = c(5,1,5), seasonal = list(order = c(0,1,0)))
fcast1 <- forecast(arimafit,50)
summary(fcast1)
and the result is:
Forecast method: ARIMA(5,1,5)
Model Information:
Series: x1
ARIMA(5,1,5)
That is, it doesn't seam to be using the seasonal argument. I've done plenty of googling and playing around with the argument to no avail. Any help would be appreciated