I need to predict the 5 year interest rate from 2010 to 2019 based on data of 1964 to 2010.
I have done forecasting.
I want to improve my RMSE
accuracy.
How can I do it ?
My R
code is the following
us<-ts(train$X5.year,start = min(train$time_stamp),end = max(train$time_stamp))
usOPT<-auto.arima(us)
usOPT
coef(usOPT)
fit<-predict(usOPT,n.ahead = 3000,se.fit = T)