I used autoplot()
function to plot a time series data including the arima forecast from the forecast()
function. The x-axis of the plot is wrong. The data is used xts from 2000/01/01 to 2019/09/01, but obviously the result is not using this time.
fed.arima <- auto.arima(FEDFUNDS_ts)
fore1 <- forecast(fed.arima,level = c(95),h=12)
plot(fore1)
autoplot(fore1)